Changeset 6820 for main/waeup.sirp/trunk/src/waeup/sirp/students
- Timestamp:
- 27 Sep 2011, 08:25:04 (13 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp/students
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/students/browser.py
r6818 r6820 41 41 from waeup.sirp.students.studylevel import StudentStudyLevel, CourseTicket 42 42 from waeup.sirp.students.vocabularies import StudyLevelSource 43 from waeup.sirp.browser.resources import toggleall 43 44 44 45 # Save function used for save methods in manager pages … … 226 227 def update(self, *args, **kw): 227 228 datatable.need() 229 toggleall.need() 228 230 form = self.request.form 229 231 self.hitlist = [] -
main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/containermanagepage.pt
r6695 r6820 9 9 <select name="searchtype"> 10 10 <option value="student_id">with id</option> 11 <option value=" name">with name</option>11 <option value="fullname">with name</option> 12 12 </select> 13 13 … … 21 21 <input type="hidden" name="old_searchtype" 22 22 tal:attributes="value view/searchtype" /> 23 24 <input type="checkbox" onClick="toggle(this, 'entries')" /> Select all 25 <br /><br /> 26 23 27 <table class="display dataTableManage"> 24 28 <thead> 25 29 <tr> 26 30 <th> </th> 27 <th>Student Id</th><th> Name</th>31 <th>Student Id</th><th>Fullname</th> 28 32 </tr> 29 33 </thead> … … 35 39 <span tal:content="item/student_id">A123456</span></a> 36 40 </td> 37 <td tal:content="item/ name">Bob</td>41 <td tal:content="item/fullname">Bob</td> 38 42 </tr> 39 43 </tbody> 40 44 </table> 45 41 46 <div class="actionButtons"> 42 47 <input type="submit" name="remove" value="Remove selected" />
Note: See TracChangeset for help on using the changeset viewer.