1 | <form method="POST" i18n:domain="waeup.kofa"> |
---|
2 | <br /> |
---|
3 | <input class="btn primary" type="submit" name="search" |
---|
4 | tal:attributes="value view/search_button" /> |
---|
5 | |
---|
6 | <select name="searchtype"> |
---|
7 | <option i18n:translate="" value="student_id">with id</option> |
---|
8 | <option i18n:translate="" value="fullname">with name</option> |
---|
9 | <option i18n:translate="" value="reg_number">with registration number</option> |
---|
10 | <option i18n:translate="" value="matric_number">with matriculation number</option> |
---|
11 | <option i18n:translate="" value="current_session">in session</option> |
---|
12 | <option i18n:translate="" value="depcode">in department</option> |
---|
13 | <option i18n:translate="" value="current_mode">in study mode</option> |
---|
14 | <option i18n:translate="" value="suspended"> |
---|
15 | with deactivated account (search term omitted) |
---|
16 | </option> |
---|
17 | <option i18n:translate="" value="transcript"> |
---|
18 | who requested transcript (search term omitted) |
---|
19 | </option> |
---|
20 | </select> |
---|
21 | |
---|
22 | <input type="text" name="searchterm" /> |
---|
23 | |
---|
24 | <p> </p> |
---|
25 | <div tal:condition="view/hitlist"> |
---|
26 | <h3 i18n:translate="">Search Results</h3> |
---|
27 | <input type="hidden" name="old_searchterm" |
---|
28 | tal:attributes="value view/searchterm" /> |
---|
29 | <input type="hidden" name="old_searchtype" |
---|
30 | tal:attributes="value view/searchtype" /> |
---|
31 | <table class="display dataTable"> |
---|
32 | <thead> |
---|
33 | <tr> |
---|
34 | <th i18n:translate="">Student Id</th> |
---|
35 | <th i18n:translate="">Reg. Number</th> |
---|
36 | <th i18n:translate="">Matric. Number</th> |
---|
37 | <th i18n:translate="">State</th> |
---|
38 | <th i18n:translate="">Full Name</th> |
---|
39 | </tr> |
---|
40 | </thead> |
---|
41 | <tbody> |
---|
42 | <tr tal:repeat="item view/hitlist" class="gradeC"> |
---|
43 | <td> <a tal:attributes="href item/url"> |
---|
44 | <span tal:content="item/student_id">A123456</span></a> |
---|
45 | </td> |
---|
46 | <td class="center"> <a tal:attributes="href item/url"> |
---|
47 | <span tal:content="item/reg_number">9999999</span></a> |
---|
48 | </td> |
---|
49 | <td class="center"> <a tal:attributes="href item/url"> |
---|
50 | <span tal:content="item/matric_number">9999999</span></a> |
---|
51 | </td> |
---|
52 | <td tal:content="item/state">admitted</td> |
---|
53 | <td tal:content="item/display_fullname">Bob</td> |
---|
54 | </tr> |
---|
55 | </tbody> |
---|
56 | </table> |
---|
57 | <br /> |
---|
58 | </div> |
---|
59 | </form> |
---|