Changeset 7601 for main/waeup.sirp/trunk/src/waeup/sirp/university
- Timestamp:
- 8 Feb 2012, 07:05:16 (13 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp/university
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/university/interfaces.py
r7333 r7601 163 163 semester = schema.Choice( 164 164 title = u'Semester/Term', 165 default = 0,165 default = 9, 166 166 vocabulary = semester, 167 167 required = True, -
main/waeup.sirp/trunk/src/waeup/sirp/university/vocabularies.py
r7528 r7601 35 35 36 36 course_levels = SimpleSIRPVocabulary( 37 ('Pre-Studies', 0),37 ('Pre-Studies', 10), 38 38 ('100 (Year 1)',100), 39 39 ('200 (Year 2)',200), … … 47 47 48 48 semester = SimpleSIRPVocabulary( 49 ('N/A', 0),49 ('N/A', 9), 50 50 ('First Semester', 1), 51 51 ('Second Semester', 2), … … 58 58 ('Sandwich','sandwich'), 59 59 ('Postgraduate','pg'), 60 ('no application','no'), 60 61 ) 61 62
Note: See TracChangeset for help on using the changeset viewer.