source: main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/students/browser_templates/containerpage.pt @ 11035

Last change on this file since 11035 was 11026, checked in by Henrik Bettermann, 11 years ago

Next try to format select elements coming from zope.formlib or from Kofa pagetemplates.

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