source: main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/createallstudentspage.pt @ 17991

Last change on this file since 17991 was 17985, checked in by Henrik Bettermann, 3 days ago

CreateAllStudentsPage: Stop creation after 1000 students to avoid write
conflicts which sill occur even though transactions have formerly been
commited.

File size: 637 bytes
Line 
1<div i18n:domain="waeup.kofa">
2  <span i18n:translate="">
3    <span i18n:name="n" tal:replace="view/n">N</span> student records have been successfully created.
4  </span>
5  <br />
6  <tal:fail condition="view/failed">
7    <strong i18n:translate="">Failed records:</strong>
8    <br />
9    <div  tal:repeat="value view/failed">
10      <a tal:attributes="href python:value[1]" tal:content="python:value[0]"> ID</a>
11      (<span tal:content="python:value[2]">MSG</span>)
12    </div>
13  </tal:fail>
14  <tal:norecord i18n:translate=""
15       condition="python:not view.failed and not view.successful">
16      No record found.
17  </tal:norecord>
18</div>
Note: See TracBrowser for help on using the repository browser.