source: WAeUP_SRP/trunk/skins/waeup_student/students_co_view.pt @ 886

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

getRolesInContext now does additional checks for ClearanceOfficer?.

File size: 4.9 KB
Line 
1<metal:html tal:define="rendered options/rendered;
2            portal_status_message options/psm;
3            students options/students;
4            is_manager options/is_manager;"
5            >
6  <metal:body use-macro="here/main_template/macros/master">
7    <metal:block fill-slot="header"
8                 tal:define="creation creation|nothing;
9                 edition edition|nothing;
10                 metadata metadata|nothing"
11                 >
12    </metal:block>
13   
14    <metal:main fill-slot="main">
15      <span tal:condition="not: is_manager">
16        <metal:block use-macro="here/error_not_found/macros/not_found" />
17      </span>
18      <span tal:condition="is_manager"
19        tal:define="items students;
20        columns python:3;
21        items_per_page python:40;
22        max_items python:300;
23        zoom python:0;
24        batches_all python:here.getBatchList(items,columns, items_per_page,zoom,max_items=400);
25        batches python:batches_all[0];
26        batch_info python:batches_all[1];
27        zoomed python:batches_all[2];
28        mq nocall:modules/ZTUtils/make_query;"
29        tal:omit-tag=""
30        >
31     
32        <h3> Clearance Officer Search</h3>
33       
34        <br />
35     
36        <span tal:replace="structure rendered" />
37        <tal:block tal:condition="python: batch_info and batch_info['nb_pages'] > 1">
38          <div class="batchLayout">
39            <span i18n:translate="">
40              Objects:
41              <strong>
42                <tal:block replace="batch_info/start"
43                           i18n:name="batch_start" /> - <tal:block replace="batch_info/limit"
44                                                                   i18n:name="batch_limit" />
45              </strong>
46              of <tal:block replace="batch_info/length"
47                            i18n:name="batch_length" />
48            </span>
49          </div>
50          <br />
51        </tal:block>
52        <table class="contentListing" width="100%">
53          <span tal:repeat="rows batches" tal:omit-tag="">
54            <span tal:repeat="student rows">
55              <tr tal:condition="student"
56                  tal:attributes="class python:test(repeat['student'].even(), 'even ajaxtd', 'odd ajaxtd')">
57                <td><a href="id" tal:attributes="href string:${student/student/absolute_url}"
58                       tal:content="student/id"></a></td>   
59                <td>
60                  <span tal:replace="python: student['per_doc'].firstname" />
61                  <span tal:replace="python: student['per_doc'].middlename" />
62                  <span tal:replace="python: student['per_doc'].lastname" />
63                </td>   
64                <td><span tal:replace="python: student['app_doc'].jamb_reg_no" /></td>   
65                <td><a href="id"
66                       tal:attributes="href string:${student/student/clearance/absolute_url}/clearance_edit_form_manager"
67                       tal:content="student/review_state"></a></td>   
68                <td>
69              </tr>
70            </span>
71          </span>
72        </table>
73        <tal:block condition="python:batch_info and batch_info['nb_pages'] > 1">
74          <div class="pageNavigationLayout">
75            <a tal:define="previous batch_info/previous"
76               tal:condition="python:previous is not None"
77               tal:attributes="href python:'%s?%s'%(request['URL'],
78               mq(request.form, b_start=0))"
79               >
80            (&lt;&lt;)</a>
81            <a tal:define="previous batch_info/previous"
82               tal:condition="python:previous is not None"
83               tal:attributes="href python:'%s?%s'%(request['URL'],
84               mq(request.form, b_start=previous))"
85               i18n:translate="batch_previous">Previous</a>
86            <tal:block repeat="page batch_info/pages">
87              <tal:block condition="python:page != batch_info['start'] - 1">
88                <a tal:attributes="href python:'%s?%s'%(request['URL'],
89                mq(request.form, b_start=page))"
90                tal:content="repeat/page/number">1</a>&nbsp;
91              </tal:block>
92              <tal:block condition="python:page == batch_info['start'] - 1">
93                <span tal:content="string:${repeat/page/number}" />&nbsp;
94              </tal:block>
95            </tal:block>
96            <a tal:define="next batch_info/next"
97               tal:condition="python:next is not None"
98               tal:attributes="href python:'%s?%s'%(request['URL'],
99               mq(request.form, b_start=next))"
100               i18n:translate="batch_next">Next</a>
101            <a tal:define="next batch_info/next;
102            last_page python:batch_info['pages'][-1]"
103            tal:condition="python:next is not None"
104            tal:attributes="href python:'%s?%s'%(request['URL'],
105            mq(request.form, b_start=last_page))"
106            >
107            (&gt;&gt;)</a>
108          </div>
109        </tal:block>
110      </span>
111    </metal:main>
112  </metal:body>
113</metal:html>
Note: See TracBrowser for help on using the repository browser.