Changeset 15446 for main/waeup.kofa


Ignore:
Timestamp:
3 Jun 2019, 10:32:23 (5 years ago)
Author:
Henrik Bettermann
Message:

Add level 0 (None) to course levels.

Location:
main/waeup.kofa/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/CHANGES.txt

    r15432 r15446  
    441.6.1.dev0 (unreleased)
    55=======================
     6
     7* Add level 0 (None) to course levels.
    68
    79* Ease customization of selectable payment categories.
  • main/waeup.kofa/trunk/src/waeup/kofa/students/batching.py

    r15419 r15446  
    651651    `ticket_session` is an additional attribute which can be used to store the
    652652    session of the course when it was taken. Usually this information is
    653     redundant because the the parent study level object already contains this
    654     information except for the study level zero container which can be used to
     653    redundant because the parent study level object already contains this
     654    information, except for the study level zero container which can be used to
    655655    store 'orphaned' course tickets.
    656656    """
  • main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_vocabularies.py

    r15203 r15446  
    122122            for value in values]
    123123        self.assertEqual(len(titles), 11)
    124         # Repeating Pre-Studies level does not exist and raises a KeyError
    125         # when trying to get its title
    126         self.assertRaises(KeyError,studylevelsource.getTitle,studycourse,20)
  • main/waeup.kofa/trunk/src/waeup/kofa/university/vocabularies.py

    r14638 r15446  
    2828
    2929course_levels = SimpleKofaVocabulary(
     30    (_('None'),0),
    3031    (_('Pre-Studies'),10),
    3132    (_('100 (Year 1)'),100),
Note: See TracChangeset for help on using the changeset viewer.