source: WAeUP_SRP/trunk/skins/waeup_pins/batch_index_html.pt @ 535

Last change on this file since 535 was 535, checked in by joachim, 18 years ago

student apply admission should work now
the default_view for campus is now home_index.py
for students and student student_index.py
these script redirect to the appropriate PT

File size: 736 bytes
Line 
1<metal:html tal:define="info context/getBatchInfo">
2
3  <metal:body use-macro="here/main_template/macros/master">
4
5    <metal:main fill-slot="main">
6      <span tal:condition="isAnon">
7      </span>
8      <span tal:condition="python:not isAnon and info">
9        <h3 tal:content="info/review_state|nothing"></h3>
10        <span tal:omit-tag=""
11              tal:content="structure python: info['batch_doc'].render(proxy=info['batch_doc'],
12              layout_mode='view',
13              )"
14              />
15      </span>
16      <table>
17        <tr tal:repeat="pin info/unused">
18          <td tal:content="pin/serial" />
19          <td tal:content="pin/pin" />
20        </tr>
21      </table>
22    </metal:main>
23  </metal:body>
24</metal:html>
Note: See TracBrowser for help on using the repository browser.