source: waeup_product/trunk/skins/waeup_student/student_view_student.pt @ 76

Last change on this file since 76 was 76, checked in by joachim, 19 years ago

=more enhancements

File size: 1.2 KB
Line 
1<html metal:use-macro="here/content_lib_master/macros/master">
2
3<metal:block fill-slot="head_slot">
4  <tal:block tal:define="student here/getContent">
5  </tal:block>
6</metal:block>
7
8<metal:block fill-slot="css_slot">
9  <link rel="Stylesheet" type="text/css" href=""
10    tal:attributes="href string:${base_url}student.css" />
11</metal:block>
12  <metal:block fill-slot="header">
13  </metal:block>
14  <metal:block fill-slot="main"
15               tal:define="student here/getContent;
16               items here/contentValues"
17               >
18    <tal:block condition="python:0 and len(items)">
19    <table cellspacing="0" cellpadding="0">
20        <tr tal:repeat="item items">
21          <td colspan="1">
22            <a href="jamb"
23               tal:attributes="href item/absolute_url"
24               tal:content="item/title_or_id"></a>
25          </td>
26        </tr>
27    </table>
28    </tal:block>
29    <ul>
30      <li>  <a href="" tal:attributes="href string:${context/absolute_url}/JAMB">Clearence Form Processing</a></li>
31      <li>  <a href="" tal:attributes="href string:${context/absolute_url}/PERSONAL">Personal Data Form</a></li>
32    </ul>
33  </metal:block>
34  <metal:block fill-slot="sub">
35  </metal:block>
36</html>
Note: See TracBrowser for help on using the repository browser.