1 | <metal:body use-macro="here/main_template/macros/master"> |
---|
2 | <metal:main fill-slot="main" |
---|
3 | tal:define="info context/getStudentFolderInfo; |
---|
4 | is_so info/is_sectionofficer|nothing; |
---|
5 | is_staff info/is_staff|nothing; |
---|
6 | is_student info/is_student"> |
---|
7 | <span tal:condition="not: info"> |
---|
8 | <span tal:content="here/illegal_view" /> |
---|
9 | </span> |
---|
10 | <span tal:condition="info" |
---|
11 | tal:define="review_state info/review_state; |
---|
12 | rows python: info['items']"> |
---|
13 | |
---|
14 | <a href="" tal:condition="is_staff" |
---|
15 | tal:attributes="href string:${here/academicsParent}"> |
---|
16 | <img tal:attributes="src string:${here/portal_url}/arrow_up.gif"/> |
---|
17 | Up one level |
---|
18 | </a> |
---|
19 | <h3 tal:content="info/name" /> |
---|
20 | <br /> |
---|
21 | |
---|
22 | <table tal:condition="is_staff" class="contentListing" width="100%" summary="content layout" id="folder_content"> |
---|
23 | <tr tal:repeat="row rows" |
---|
24 | tal:attributes="class python:test(repeat['row'].even(), 'even ajaxtd', 'odd ajaxtd')"> |
---|
25 | <td><a href="view" tal:attributes="href string:${row/url}"> |
---|
26 | <strong tal:content="row/title" /></a> </td> |
---|
27 | <td> |
---|
28 | <a tal:condition="python: row['is_editable'] and not row['type'] in ('StudentClearance','StudentAccommodation',)" |
---|
29 | href="edit" tal:attributes="href string:${row/url}/external_edit_form" |
---|
30 | target="edit" |
---|
31 | onclick="javascript:window.open('','edit','width=600, height=700, directories=no, toolbar=no, location=no, menubar=no, scrollbars=yes, status=no, resizable=no, dependent=no')"> |
---|
32 | [edit] |
---|
33 | </a> |
---|
34 | <a tal:condition="python: row['is_editable'] and row['type']=='StudentClearance'" |
---|
35 | href="edit" tal:attributes="href string:${row/url}/external_clearance_edit_form" |
---|
36 | target="edit" |
---|
37 | onclick="javascript:window.open('','edit','width=600, height=700, directories=no, toolbar=no, location=no, menubar=no, scrollbars=yes, status=no, resizable=no, dependent=no')"> |
---|
38 | [edit and change state] |
---|
39 | </a> |
---|
40 | <a tal:condition="python: context.isClearanceOfficer() and row['type']=='StudentClearance'" |
---|
41 | href="edit" tal:attributes="href string:${row/url}/external_clearance_edit_form" |
---|
42 | target="edit" |
---|
43 | onclick="javascript:window.open('','edit','width=600, height=700, directories=no, toolbar=no, location=no, menubar=no, scrollbars=yes, status=no, resizable=no, dependent=no')"> |
---|
44 | [change state] |
---|
45 | </a> |
---|
46 | </td> |
---|
47 | |
---|
48 | </tr> |
---|
49 | <tr tal:condition="info/session"> |
---|
50 | <td> |
---|
51 | <a href="edit" tal:attributes="href string:session_results_view"> |
---|
52 | <strong>Session Results</strong> |
---|
53 | </a> |
---|
54 | </td> |
---|
55 | <td> |
---|
56 | |
---|
57 | </td> |
---|
58 | </tr> |
---|
59 | </table> |
---|
60 | |
---|
61 | |
---|
62 | <span tal:condition="python:info['member'].id in ('admin','joachim','kehindesamuel','med','isouaba','obadejo','ehioaiks','despej','shinakale','igadoghe',)"> |
---|
63 | <br /> |
---|
64 | <form action="mail_password_form" method="post" class="group"> |
---|
65 | <input type="submit" class="context" value="Send Email with Authentication Data" /> |
---|
66 | </form> |
---|
67 | </span> |
---|
68 | |
---|
69 | |
---|
70 | |
---|
71 | |
---|
72 | <table tal:condition="is_student" class="contentListing" width="" summary="content layout" id="folder_content"> |
---|
73 | <span tal:repeat="row rows"> |
---|
74 | <tr tal:condition="row/display"> |
---|
75 | <td><a href="view" tal:condition="row/s_view_link" |
---|
76 | tal:attributes="href string:${row/s_view_link}"> |
---|
77 | <strong tal:content="row/title" /></a> |
---|
78 | <strong tal:condition="not:row/s_view_link" tal:content="row/title" /> |
---|
79 | </td> |
---|
80 | |
---|
81 | <td width="80px" align="center"> |
---|
82 | <a tal:condition="python: row['s_edit_link'] and row['is_editable']" |
---|
83 | href="edit" tal:attributes="href string:${row/s_edit_link}"> |
---|
84 | [edit] |
---|
85 | </a> |
---|
86 | </td> |
---|
87 | |
---|
88 | <td width="100px" align="left"> |
---|
89 | <span tal:content="row/review_state" /> |
---|
90 | </td> |
---|
91 | </tr> |
---|
92 | </span> |
---|
93 | <tr tal:condition="info/session"> |
---|
94 | <td> |
---|
95 | <a href="edit" tal:attributes="href string:session_results_view"> |
---|
96 | <strong>Session Results</strong> |
---|
97 | </a> |
---|
98 | </td> |
---|
99 | <td> |
---|
100 | |
---|
101 | </td> |
---|
102 | </tr> |
---|
103 | </table> |
---|
104 | |
---|
105 | </span> |
---|
106 | </metal:main> |
---|
107 | </metal:body> |
---|