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

Last change on this file was 14952, checked in by Henrik Bettermann, 7 years ago

Do not log error messages.
Improve Student Creation Report.
Adjust tests.

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