1 | <form method="POST" i18n:domain="waeup.kofa" class="form-inline"> |
---|
2 | <br /> |
---|
3 | <div class="form-group"> |
---|
4 | <input class="btn btn-primary" type="submit" name="search" |
---|
5 | tal:attributes="value view/search_button" /> |
---|
6 | </div> |
---|
7 | <div class="form-group"> |
---|
8 | <select name="searchtype" class="form-control"> |
---|
9 | <option i18n:translate="" value="student_id">with id</option> |
---|
10 | <option i18n:translate="" value="fullname">with name</option> |
---|
11 | <option i18n:translate="" value="reg_number">with registration number</option> |
---|
12 | <option i18n:translate="" value="matric_number">with matriculation number</option> |
---|
13 | <option i18n:translate="" value="current_session">in session</option> |
---|
14 | <option i18n:translate="" value="depcode">in department</option> |
---|
15 | <option i18n:translate="" value="current_mode">in study mode</option> |
---|
16 | <option i18n:translate="" value="suspended"> |
---|
17 | with deactivated account (search term omitted) |
---|
18 | </option> |
---|
19 | <option i18n:translate="" value="transcript requested"> |
---|
20 | in state 'transcript requested' (search term omitted) |
---|
21 | </option> |
---|
22 | <option i18n:translate="" value="transcript validated"> |
---|
23 | in state 'transcript validated' (search term omitted) |
---|
24 | </option> |
---|
25 | <option i18n:translate="" value="graduated"> |
---|
26 | in state 'graduated' (search term omitted) |
---|
27 | </option> |
---|
28 | </select> |
---|
29 | </div> |
---|
30 | <div class="form-group"> |
---|
31 | <input type="text" class="form-control" name="searchterm" /> |
---|
32 | </div> |
---|
33 | |
---|
34 | <p> </p> |
---|
35 | <div tal:condition="view/hitlist"> |
---|
36 | <h3>Search Results</h3> |
---|
37 | <input type="hidden" name="old_searchterm" |
---|
38 | tal:attributes="value view/searchterm" /> |
---|
39 | <input type="hidden" name="old_searchtype" |
---|
40 | tal:attributes="value view/searchtype" /> |
---|
41 | |
---|
42 | <br /><br /> |
---|
43 | <table class="kofa-data-table dataTableManage"> |
---|
44 | <thead> |
---|
45 | <tr> |
---|
46 | <th> </th> |
---|
47 | <th i18n:translate="">Student Id</th> |
---|
48 | <th i18n:translate="">Reg. Number</th> |
---|
49 | <th i18n:translate="">Matric. Number</th> |
---|
50 | <th i18n:translate="">State</th> |
---|
51 | <th i18n:translate="">Full Name</th> |
---|
52 | </tr> |
---|
53 | </thead> |
---|
54 | <tbody> |
---|
55 | <tr tal:repeat="item view/hitlist"> |
---|
56 | <td><input type="checkbox" name="entries" |
---|
57 | tal:attributes="value item/context/__name__" /></td> |
---|
58 | <td> <a tal:attributes="href item/url"> |
---|
59 | <span tal:content="item/student_id">A123456</span></a> |
---|
60 | </td> |
---|
61 | <td class="center"> <a tal:attributes="href item/url"> |
---|
62 | <span tal:content="item/reg_number">9999999</span></a> |
---|
63 | </td> |
---|
64 | <td class="center"> <a tal:attributes="href item/url"> |
---|
65 | <span tal:content="item/matric_number">9999999</span></a> |
---|
66 | </td> |
---|
67 | <td tal:content="item/state">admitted</td> |
---|
68 | <td tal:content="item/display_fullname">Bob</td> |
---|
69 | </tr> |
---|
70 | </tbody> |
---|
71 | </table> |
---|
72 | <input type="checkbox" onClick="toggle(this, 'entries')" /> |
---|
73 | <span i18n:translate="">Select all</span> |
---|
74 | <br /><br /> |
---|
75 | <input type="submit" name="remove" |
---|
76 | tal:attributes="value view/remove_button" class="btn btn-default" |
---|
77 | onclick="return confirmPost('Are you sure?')"/> |
---|
78 | |
---|
79 | </div> |
---|
80 | </form> |
---|