- Timestamp:
- 22 Feb 2012, 21:14:09 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/university/interfaces.py
r7670 r7681 26 26 from waeup.sirp.university.vocabularies import ( 27 27 course_levels, 28 semester,29 application_categories,30 study_modes,31 inst_types,32 28 CourseSource, 29 StudyModeSource, 30 AppCatSource, 31 InstTypeSource, 32 SemesterSource, 33 33 ) 34 34 … … 53 53 title = u'Name prefix', 54 54 default = u'faculty', 55 vocabulary = inst_types,55 source = InstTypeSource(), 56 56 required = True, 57 57 ) … … 100 100 title_prefix = schema.Choice( 101 101 title = u'Name prefix', 102 vocabulary = inst_types,102 source = InstTypeSource(), 103 103 default = u'department', 104 104 required = True, … … 166 166 title = u'Semester/Term', 167 167 default = 9, 168 vocabulary = semester,168 source = SemesterSource(), 169 169 required = True, 170 170 ) … … 206 206 study_mode = schema.Choice( 207 207 title = u'Study Mode', 208 vocabulary = study_modes,208 source = StudyModeSource(), 209 209 default = u'ug_ft', 210 210 required = True, … … 227 227 application_category = schema.Choice( 228 228 title = u'Application Category', 229 vocabulary = application_categories,229 source = AppCatSource(), 230 230 default = u'basic', 231 231 required = True,
Note: See TracChangeset for help on using the changeset viewer.