source: WAeUP_SRP/trunk/skins/waeup_student/search_students_form.pt @ 1006

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

student_search fixed for ClearanceOfficers?
getStudentInfo checks for access to not owned Student-Ids and logs them.
search Pins shows all used PIN's

File size: 5.1 KB
Line 
1<metal:html tal:define="rendered options/rendered;
2            portal_status_message options/psm;
3            students options/students;
4            allowed options/allowed|nothing"
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: allowed">
16        <metal:block use-macro="here/error_not_found/macros/not_found" />
17      </span>
18      <span tal:condition="allowed"
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> Search Student Section</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:${context/portal_url}/campus/students/${student/id}"
58                       tal:content="student/id"></a></td>   
59                <td>
60                  <span tal:replace="student/name" />
61                </td>   
62                <td><span tal:replace="student/jamb_reg_no" /></td>   
63                <td tal:condition="options/co_view|nothing">
64                       <a href="id"
65                          tal:attributes="href string:${context/portal_url}/campus/students/${student/id}/clearance/external_clearance_edit_form"
66                          target="edit"
67                          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')"
68                          >[change state]</a></td>
69                <td tal:condition="options/co_view|nothing"><span tal:replace="student/review_state" /></td>   
70              </tr>
71            </span>
72          </span>
73        </table>
74        <tal:block condition="python:batch_info and batch_info['nb_pages'] > 1">
75          <div class="pageNavigationLayout">
76            <a tal:define="previous batch_info/previous"
77               tal:condition="python:previous is not None"
78               tal:attributes="href python:'%s?%s'%(request['URL'],
79               mq(request.form, b_start=0))"
80               >
81            (&lt;&lt;)</a>
82            <a tal:define="previous batch_info/previous"
83               tal:condition="python:previous is not None"
84               tal:attributes="href python:'%s?%s'%(request['URL'],
85               mq(request.form, b_start=previous))"
86               i18n:translate="batch_previous">Previous</a>
87            <tal:block repeat="page batch_info/pages">
88              <tal:block condition="python:page != batch_info['start'] - 1">
89                <a tal:attributes="href python:'%s?%s'%(request['URL'],
90                mq(request.form, b_start=page))"
91                tal:content="repeat/page/number">1</a>&nbsp;
92              </tal:block>
93              <tal:block condition="python:page == batch_info['start'] - 1">
94                <span tal:content="string:${repeat/page/number}" />&nbsp;
95              </tal:block>
96            </tal:block>
97            <a tal:define="next batch_info/next"
98               tal:condition="python:next is not None"
99               tal:attributes="href python:'%s?%s'%(request['URL'],
100               mq(request.form, b_start=next))"
101               i18n:translate="batch_next">Next</a>
102            <a tal:define="next batch_info/next;
103            last_page python:batch_info['pages'][-1]"
104            tal:condition="python:next is not None"
105            tal:attributes="href python:'%s?%s'%(request['URL'],
106            mq(request.form, b_start=last_page))"
107            >
108            (&gt;&gt;)</a>
109          </div>
110        </tal:block>
111      </span>
112    </metal:main>
113  </metal:body>
114</metal:html>
115 
Note: See TracBrowser for help on using the repository browser.