Changeset 10988 for main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/students/browser_templates
- Timestamp:
- 27 Jan 2014, 13:39:22 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/students/browser_templates/containerpage.pt
r10647 r10988 1 <form method="POST" i18n:domain="waeup.kofa" >1 <form method="POST" i18n:domain="waeup.kofa" class="form-inline"> 2 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 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"> 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> 24 28 <p> </p> 25 29 <div tal:condition="view/hitlist"> … … 29 33 <input type="hidden" name="old_searchtype" 30 34 tal:attributes="value view/searchtype" /> 31 <table class=" displaydataTable">35 <table class="table table-striped dataTable"> 32 36 <thead> 33 37 <tr> … … 40 44 </thead> 41 45 <tbody> 42 <tr tal:repeat="item view/hitlist" class="gradeC">46 <tr tal:repeat="item view/hitlist"> 43 47 <td> <a tal:attributes="href item/url"> 44 48 <span tal:content="item/student_id">A123456</span></a> … … 57 61 <br /> 58 62 </div> 59 </form> 63
Note: See TracChangeset for help on using the changeset viewer.