Changeset 14574 for main/waeup.kofa/trunk/docs/source/userdocs
- Timestamp:
- 23 Feb 2017, 11:44:30 (8 years ago)
- Location:
- main/waeup.kofa/trunk/docs/source/userdocs/students
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/docs/source/userdocs/students/browser.rst
r13948 r14574 238 238 `automatic` is set to ``True`` and `carry_over` to ``False.`` 239 239 240 2. 241 (`IConfigurationContainer.carry_over`) such that failed courses are242 automatically carried over from one session to the next. Failed243 course tickets from the previous level, i.e. tickets with a score244 below the passmark, are collected and 'copied' into the current245 study level container. The attributes `automatic` and `carry_over`246 are set to ``True``.240 2. The portal can be configured 241 (`IConfigurationContainer.carry_over`) such that failed courses 242 are automatically carried over from one session to the next. 243 Failed course tickets from the previous level, i.e. tickets 244 with a score below the passmark, are collected and 'copied' 245 into the current study level container. The attributes 246 `automatic` and `carry_over` are set to ``True``. 247 247 248 248 In most cases such an automatically created course list is not … … 251 251 further courses, which they desire to attend, and can create 252 252 additional course tickets, as long as the total number of credits do 253 not exceed 50 (value customizable). Course tickets can also be 254 removed. Whereas officers can remove any ticket from the list, 255 students can remove only optional (non-mandatory) course tickets 256 (condition customizable). 253 not exceed 50 (value customizable). 254 255 In most cases such an automatically created course list is not 256 perfect or even ready for submission to the course adviser. The list 257 must be edited according to the student's needs. Students can select 258 further courses, which they desire to attend, and can create 259 additional course tickets, as long as the total number of credits of 260 non-outstanding courses (if `outstanding` attribute is ``True``) do 261 not exceed 50 (value customizable). That means outstanding courses 262 are not considered as registered courses. Usually they are being 263 added by officers. 264 265 Course tickets can also be removed. Whereas officers can remove any 266 ticket from the list, students can remove only optional 267 (non-mandatory) course tickets (condition customizable). 257 268 258 269 The edit form page provides a 'Register course list' button which … … 268 279 they can validate or reject it by pressing the same-named link 269 280 buttons. After pressing the 'Reject courses' button, Kofa redirects 270 to the `ContactStudentFormPage` which can be used to inform the student271 about the reason of rejection. In contrast to clearance rejection, 272 the message, which is being sent to the student by email, is neither 273 stored in the database nor in the logfiles.281 to the `ContactStudentFormPage` which can be used to inform the 282 student about the reason of rejection. In contrast to clearance 283 rejection, the message, which is being sent to the student by email, 284 is neither stored in the database nor in the logfiles. 274 285 275 286 .. seealso:: … … 296 307 :py:meth:`CourseTicket.editable_by_lecturer<waeup.kofa.students.studylevel.CourseTicket.editable_by_lecturer>`. 297 308 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: 309 There are two options to edit course results. (1) Scores in course 310 tickets can be changed by editing its values in the table and 311 pressing the 'Update scores from table' button below. Scores can be 312 cleared by removing the respective values. Lecturers have to be 313 online during this process.(2) Alternatively, lecturers can download 314 a csv file, edit scores in this csv file offline and upload the same 315 file when they are online again. This procedure is explained in 316 step-by-step instructions which show up when pressing the yellow 317 'Help' button: 299 318 300 319 .. admonition:: Help … … 303 322 304 323 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. 324 2. Open csv file in a text editor or in a spreadsheet programme 325 (Excel or Calc). 326 3. Edit course results only. Do not modify other entries. 327 Do not remove or add columns. Do not add rows. 328 4. Save file in same format (csv). Do not switch to any other 329 format (xls, xlsx or ods). 330 5. Select same file for upload and press the blue 'Update ...' 331 button. 332 6. The values in the table will be updated. Spot-check if the 333 values in the table correspond with the values in your file. 334 335 Note: Only course results of students which are in state 336 'courses validated' and in current academic session can be modified. 337 Additional data will just be ignored. 312 338 313 339 .. seealso:: … … 374 400 ------------------ 375 401 376 Officers with `ManageHostels` permission do see a 'Relocate student' link 377 button which calls the `BedTicketRelocationView`. This view relocates the 378 student if student parameters or the bed type of the bed have changed. The 379 `update` method of this view calls the 380 :py:meth:`BedTicket.relocateStudent<waeup.kofa.students.accommodation.BedTicket.relocateStudent>` 381 method which checks first, if the student has a 'reserved' bed space. 382 Students in reserved beds are never subject to relocation. It checks secondly, 383 if booking has been cancelled in the accommodation section but other bed space 384 has been manually allocated after cancellation. Then this bed is used, no 385 matter whether the bed meets the bed type criteria or not. If both checks are 386 negative, Kofa searches for a free bed space, which meets the student's bed 387 type criteria. Only if it finds a new and free bed space, it starts the 402 Officers with `ManageHostels` permission do see a 'Relocate student' 403 link button which calls the `BedTicketRelocationView`. This view 404 relocates the student if student parameters or the bed type of the 405 bed have changed. The `update` method of this view calls the 406 :py:meth:`BedTicket.relocateStudent<waeup.kofa.students.accommodation.BedTicket.relocateStudent> 407 ` method which checks first, if the student has a 'reserved' bed 408 space. Students in reserved beds are never subject to relocation. It 409 checks secondly, if booking has been cancelled in the accommodation 410 section but other bed space has been manually allocated after 411 cancellation. Then this bed is used, no matter whether the bed meets 412 the bed type criteria or not. If both checks are negative, Kofa 413 searches for a free bed space, which meets the student's bed type 414 criteria. Only if it finds a new and free bed space, it starts the 388 415 relocation process by releasing the old bed, booking the new bed and 389 416 designating the new bed in the bed ticket. -
main/waeup.kofa/trunk/docs/source/userdocs/students/interfaces.rst
r13168 r14574 288 288 The quite long list of schema fields pretends that form pages may 289 289 provide these fields for editing. This is not the case. Except for 290 `score`, all these fields are 'for display' only. They can neither291 be changed through the UI nor by batch processing (import). They are 292 solely meant for backing up the orginal course data. See also 293 :ref:`course_ticket_processor`.290 `score`, `mandatory` and `outstanding` all other fields are 'for 291 display' only. They can neither be changed through the UI nor by 292 batch processing (import). They are solely meant for backing up the 293 orginal course data. See also :ref:`course_ticket_processor`. 294 294 295 295 .. note::
Note: See TracChangeset for help on using the changeset viewer.