- Timestamp:
- 3 Jun 2019, 10:32:23 (5 years ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/CHANGES.txt
r15432 r15446 4 4 1.6.1.dev0 (unreleased) 5 5 ======================= 6 7 * Add level 0 (None) to course levels. 6 8 7 9 * Ease customization of selectable payment categories. -
main/waeup.kofa/trunk/src/waeup/kofa/students/batching.py
r15419 r15446 651 651 `ticket_session` is an additional attribute which can be used to store the 652 652 session of the course when it was taken. Usually this information is 653 redundant because the theparent study level object already contains this654 information except for the study level zero container which can be used to653 redundant because the parent study level object already contains this 654 information, except for the study level zero container which can be used to 655 655 store 'orphaned' course tickets. 656 656 """ -
main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_vocabularies.py
r15203 r15446 122 122 for value in values] 123 123 self.assertEqual(len(titles), 11) 124 # Repeating Pre-Studies level does not exist and raises a KeyError125 # when trying to get its title126 self.assertRaises(KeyError,studylevelsource.getTitle,studycourse,20) -
main/waeup.kofa/trunk/src/waeup/kofa/university/vocabularies.py
r14638 r15446 28 28 29 29 course_levels = SimpleKofaVocabulary( 30 (_('None'),0), 30 31 (_('Pre-Studies'),10), 31 32 (_('100 (Year 1)'),100),
Note: See TracChangeset for help on using the changeset viewer.