source: WAeUP-SRP/trunk/skins/waeup_student/admission_status_form.pt @ 272

Last change on this file since 272 was 124, checked in by Henrik Bettermann, 19 years ago

bug fixes

File size: 1.8 KB
Line 
1<tal:block define="rendered_main options/rendered;
2                   portal_status_message options/psm;
3                   data_storage options/ds;
4                   jamb options/jamb/getContent|nothing;
5                   edition python:1;"
6                   >
7<metal:block define-macro="edit_form">
8<metal:block use-macro="here/content_lib_master/macros/master">
9  <metal:block fill-slot="header"
10    tal:define="creation creation|nothing;
11                edition edition|nothing;
12                metadata metadata|nothing"
13                >
14    </metal:block>
15    <metal:block fill-slot="main">
16        <h1>List admitted students!</h1>
17        <p>
18          You may be seeing a long list of names or just the name of the person of your interest below.
19          Click on the View Details against the name of the candidate of your interest to display the
20          required information. If the candidate of your interest is not in the list displayed,
21          you may type another name or registration number again in the Quick Search box below and click
22          on GO button.
23        </p>
24      <div tal:replace="structure rendered_main" />
25        <span  tal:define="list options/list">
26          <span tal:condition="not: list">
27            No Records found
28          </span>
29          <span tal:condition="list">
30            <h2>The following entries match your query:</h2>
31          <table>
32            <tr tal:repeat="row list">
33              <td colspan="" tal:content="row/reg_nr"></td>
34              <td colspan="" tal:content="row/firstname"></td>
35              <td colspan="" tal:content="row/middlename"></td>
36              <td colspan="" tal:content="row/lastname"></td>
37            </tr>
38          </table>
39        </span>
40        </span>
41    </metal:block>
42  <metal:block fill-slot="sub">
43  </metal:block>
44
45</metal:block>
46</metal:block>
47</tal:block>
Note: See TracBrowser for help on using the repository browser.