Changeset 6793 for main/waeup.sirp


Ignore:
Timestamp:
18 Sep 2011, 18:10:16 (13 years ago)
Author:
Henrik Bettermann
Message:

Each study level (course list) belongs to a session, is validated by a course adviser and finally closed by assigning a verdict due import.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/students/interfaces.py

    r6788 r6793  
    209209    """
    210210    level = Attribute('The level code')
     211    validation_date = Attribute('The date of validation')
     212    validated_by = Attribute('User Id of course adviser')
     213
     214    level_session = schema.Choice(
     215        title = u'Session',
     216        source = academic_sessions_vocab,
     217        default = None,
     218        required = True,
     219        )
     220
     221    level_verdict = schema.Choice(
     222        title = u'Verdict',
     223        source = verdicts,
     224        default = None,
     225        required = False,
     226        )
    211227
    212228
Note: See TracChangeset for help on using the changeset viewer.