source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicantdisplaypage.pt @ 7229

Last change on this file since 7229 was 7200, checked in by Henrik Bettermann, 13 years ago

Use same naming convention as in students: manage instead of edit_full, ApplicantDisplayFormPage? intead of DisplayApplicant?, ...

Rename pagetemplates.

File size: 887 bytes
Line 
1<h2 i18n:translate=""
2    tal:condition="view/label"
3    tal:content="view/label">Label</h2>
4
5<h2> ... <span tal:replace="context/state">Application State</span> ... </h2>
6
7<div class="workflow">
8  <div tal:repeat="msg context/history/messages">
9    <span tal:replace="msg">message</span><br />
10  </div>
11</div>
12
13<table class="zebra">
14  <tbody>
15    <tr>
16    <td><img src="" tal:attributes="src view/passport_url" /></td>
17    </tr>
18    <tal:block repeat="widget view/widgets">
19      <tr>
20        <td class="fieldname">
21          <tal:block content="widget/label"/>:
22        </td>
23        <td>
24          <span tal:replace="structure widget" />
25        </td>
26      </tr>
27    </tal:block>
28    <tr>
29      <td class="fieldname">
30          Admitted Course of Study:
31      </td>
32      <td>
33        <span tal:replace="structure view/getCourseAdmitted" />
34      </td>
35    </tr>
36  </tbody>
37</table>
Note: See TracBrowser for help on using the repository browser.