Changeset 13948 for main/waeup.kofa
- Timestamp:
- 16 Jun 2016, 10:24:51 (8 years ago)
- Location:
- main/waeup.kofa/trunk/docs/source/userdocs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/docs/source/userdocs/students/browser.rst
r13455 r13948 69 69 .. seealso:: 70 70 71 :ref:`Clearance Handling Doctests <test_handle_clearance>`71 :ref:`Clearance Handling Tests <test_handle_clearance>` 72 72 73 73 … … 275 275 .. seealso:: 276 276 277 :ref:`Course List Validation Doctests <test_handle_courses>`277 :ref:`Course List Validation Tests <test_handle_courses>` 278 278 279 279 … … 284 284 285 285 Lecturers cannot access student records directly. They don't have 286 access to the students section. Instead, lecturers go to their course 287 in the academic section and view or export lists of students who 288 attended the course, either in a previous or in the current session. 289 They do also see an 'Update scores' link button which opens the 290 `EditScoresPage` if score editing is enabled for that department 291 (`IDepartment.score_editing_disabled`) and 286 access to the students section. Instead, lecturers go to their 287 course in the academic section and click the 'Update scores' button 288 which opens the `EditScoresPage` if score editing is enabled for 289 that department (`IDepartment.score_editing_disabled`) and 292 290 `IConfigurationContainer.current_academic_session` has been set on 293 291 the portal's configuration page. The `EditScoresPage` lists all … … 298 296 :py:meth:`CourseTicket.editable_by_lecturer<waeup.kofa.students.studylevel.CourseTicket.editable_by_lecturer>`. 299 297 298 There are two options to edit course results. (1) Scores in course tickets can be changed by editing its values in the table and pressing the 'Update scores from table' button below. Scores can be cleared by removing the respective values. Lecturers have to be online during this process.(2) Alternatively, lecturers can download a csv file, edit scores in this csv file offline and upload the same file when they are online again. This procedure is explained in step-by-step instructions which show up when pressing the yellow 'Help' button: 299 300 .. admonition:: Help 301 302 **Step-by-step instructions** 303 304 1. Download csv file. 305 2. Open csv file in a text editor or in a spreadsheet programme (Excel or Calc). 306 3. Edit course results only. Do not modify other entries. Do not remove or add columns. Do not add rows. 307 4. Save file in same format (csv). Do not switch to any other format (xls, xlsx or ods). 308 5. Select same file for upload and press the blue 'Update ...' button. 309 6. The values in the table will be updated. Spot-check if the values in the table correspond with the values in your file. 310 311 Note: Only course results of students which are in state 'courses validated' and in current academic session can be modified. Additional data will just be ignored. 312 300 313 .. seealso:: 301 314 302 :ref:`Batch Editing Scores Doctests <test_batch_editing_scores>`315 :ref:`Batch Editing Scores Tests <test_batch_editing_scores>` 303 316 304 317 … … 378 391 .. seealso:: 379 392 380 :ref:`Bed Space Booking Doctests <test_handle_accommodation>`393 :ref:`Bed Space Booking Tests <test_handle_accommodation>` -
main/waeup.kofa/trunk/docs/source/userdocs/testing.rst
r13701 r13948 220 220 --------------------------------- 221 221 222 Th istest can be found in223 `waeup.kofa.students.tests.test_browser. OfficerUITests`. The corresponding use224 case isdescribed :ref:`elsewhere <batch_editing_scores>`.225 226 .. literalinclude:: ../../../src/waeup/kofa/students/tests/test_browser.py 227 :pyobject: OfficerUITests.test_handle_courses_by_lecturer222 These test can be found in 223 `waeup.kofa.students.tests.test_browser.LecturerUITests`. The corresponding use 224 cases are described :ref:`elsewhere <batch_editing_scores>`. 225 226 .. literalinclude:: ../../../src/waeup/kofa/students/tests/test_browser.py 227 :pyobject: LecturerUITests 228 228 229 229 .. _test_manage_hostels:
Note: See TracChangeset for help on using the changeset viewer.