source: main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/containerpage.pt @ 15297

Last change on this file since 15297 was 15163, checked in by Henrik Bettermann, 6 years ago

Merge with /main/waeup.kofa/branches/henrik-transcript-workflow:15127-15162

File size: 2.5 KB
Line 
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    </select>
26  </div>
27  <div class="form-group">
28    <input type="text" class="form-control" name="searchterm" />
29  </div>
30</form>
31<br />
32<div tal:condition="view/hitlist">
33  <h3 i18n:translate="">Search Results</h3>
34  <input type="hidden" name="old_searchterm"
35       tal:attributes="value view/searchterm" />
36  <input type="hidden" name="old_searchtype"
37       tal:attributes="value view/searchtype" />
38  <table class="kofa-data-table dataTable">
39    <thead>
40    <tr>
41      <th i18n:translate="">Student Id</th>
42      <th i18n:translate="">Reg. Number</th>
43      <th i18n:translate="">Matric. Number</th>
44      <th i18n:translate="">State</th>
45      <th i18n:translate="">Full Name</th>
46    </tr>
47    </thead>
48    <tbody>
49    <tr tal:repeat="item view/hitlist">
50      <td> <a tal:attributes="href item/url">
51        <span tal:content="item/student_id">A123456</span></a>
52      </td>
53      <td class="center"> <a tal:attributes="href item/url">
54        <span tal:content="item/reg_number">9999999</span></a>
55      </td>
56      <td class="center"> <a tal:attributes="href item/url">
57        <span tal:content="item/matric_number">9999999</span></a>
58      </td>
59      <td tal:content="item/state">admitted</td>
60      <td tal:content="item/display_fullname">Bob</td>
61    </tr>
62    </tbody>
63  </table>
64</div>
65
Note: See TracBrowser for help on using the repository browser.