- Timestamp:
- 14 Jun 2016, 15:55:07 (9 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/students/browser_templates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/browser_templates/editscorespage.pt
r13897 r13937 1 <form i18n:domain="waeup.kofa" method="POST"> 1 <p i18n:domain="waeup.kofa" i18n:translate="edit_scores_info"> 2 This page helps you to update your students' course results. 3 You can either update scores and CAs by importing a csv file 4 (press 'Help' for further information) or by 5 changing score or CA values in the table below. Only scores and CAs 6 of students in state 'courses validated' and current academic session 7 can be modified. 8 </p> 9 10 <form i18n:domain="waeup.kofa" method="POST" enctype="multipart/form-data"> 2 11 <br /> 12 <div class="input-group"> 13 <div class="input-group-btn"> 14 <div class="btn btn-default btn-file" i18n:translate=""> 15 Select file… 16 <input type="file" name="uploadfile:file" /> 17 </div> 18 </div> 19 <input type="text" class="form-control" readonly> 20 <div class="input-group-btn"> 21 <input type="submit" name="UPDATE_FILE" i18n:translate="" 22 value="Update editable scores from csv file" 23 class="btn btn-primary" /> 24 <button class="btn btn-warning" data-toggle="modal" 25 data-target="#myModal" i18n:translate=""> 26 Help 27 </button> 28 </div> 29 </div> 30 31 <!-- Modal --> 32 <div class="modal fade" id="myModal" tabindex="-1" role="dialog" 33 aria-labelledby="myModalLabel" aria-hidden="true"> 34 <div class="modal-dialog"> 35 <div class="modal-content"> 36 <div class="modal-header"> 37 <button type="button" class="close" data-dismiss="modal" 38 aria-hidden="true">×</button> 39 <h4 class="modal-title" id="myModalLabel" i18n:translate=""> 40 Instructions for File Upload 41 </h4> 42 </div> 43 <div class="modal-body" i18n:translate="lecturer_help"> 44 ... 45 </div> 46 </div><!-- /.modal-content --> 47 </div><!-- /.modal-dialog --> 48 </div><!-- /.modal --> 49 50 <br /><br /> 3 51 4 52 <table class="kofa-data-table dataTable"> 5 53 <thead> 6 54 <tr> 7 55 <th i18n:translate="">Matric No.</th> 8 56 <th i18n:translate="">Fullname</th> … … 12 60 <th i18n:translate="">Score</th> 13 61 <th i18n:translate="">CA</th> 14 62 </tr> 15 63 </thead> 16 64 <tbody> 17 65 <tr tal:repeat="ticket view/tickets"> 18 66 <td tal:content="ticket/student/matric_number">MATRIC_NUMBER</td> 19 67 <td tal:content="ticket/student/display_fullname">FULLNAME</td> 20 68 <td tal:content="ticket/student/translated_state">STATE</td> 21 69 <td tal:content="ticket/student/certcode">CERTCODE</td> 22 70 <td tal:content="ticket/level">LEVEL</td> 23 24 <input type="text" name="scores " class="form-control"25 26 <input type="hidden" name="sids "71 <td tal:condition="ticket/editable_by_lecturer" style="width: 65px;"> 72 <input type="text" name="scores:list" class="form-control" 73 tal:attributes="value ticket/score" /> 74 <input type="hidden" name="sids:list" 27 75 tal:attributes="value ticket/student/student_id" /> 28 76 </td> 29 30 <input type="text" name="cas " class="form-control"31 77 <td tal:condition="ticket/editable_by_lecturer" style="width: 65px;"> 78 <input type="text" name="cas:list" class="form-control" 79 tal:attributes="value ticket/ca" /> 32 80 </td> 33 81 <td tal:condition="not: ticket/editable_by_lecturer" … … 35 83 <td tal:condition="not: ticket/editable_by_lecturer" 36 84 tal:content="ticket/ca">CA</td> 37 85 </tr> 38 86 </tbody> 39 87 </table> 40 88 41 <input type="submit" name="UPDATE "42 value="Update scores " class="btn btn-primary"89 <input type="submit" name="UPDATE_TABLE" i18n:translate="" 90 value="Update scores from table" class="btn btn-primary" 43 91 /> 44 92 </form> -
main/waeup.aaue/trunk/src/waeup/aaue/students/browser_templates/studyleveleditpage.pt
r13834 r13937 27 27 <td> 28 28 <input type="checkbox" name="val_id" 29 29 tal:attributes="value value/__name__" 30 30 tal:condition="value/removable_by_student" /> 31 31 </td>
Note: See TracChangeset for help on using the changeset viewer.