Changeset 13769
- Timestamp:
- 8 Mar 2016, 17:19:16 (9 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/students
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/editscorespage.pt
r13761 r13769 18 18 <tr tal:repeat="ticket view/tickets"> 19 19 <td tal:content="ticket/student/matric_number">MATRIC_NUMBER</td> 20 <td tal:condition="ticket/editable_by_lecturer" >21 <input type="text" name="scores" class=" span1"20 <td tal:condition="ticket/editable_by_lecturer" style="width: 65px;"> 21 <input type="text" name="scores" class="form-control" 22 22 tal:attributes="value ticket/score" /> 23 23 </td> -
main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_browser.py
r13766 r13769 1859 1859 "http://localhost/app/faculties/fac1/dep1/courses/COURSE1/edit_scores") 1860 1860 self.assertTrue( 1861 '<input type="text" name="scores" class="span1" />' 1862 in self.browser.contents) 1861 'input type="text" name="scores"' in self.browser.contents) 1863 1862 self.browser.getControl(name="scores", index=0).value = '55' 1864 1863 self.browser.getControl("Update scores").click()
Note: See TracChangeset for help on using the changeset viewer.