Changeset 5986 for main/waeup.sirp/trunk/src/waeup/sirp/university
- Timestamp:
- 26 Apr 2011, 20:08:25 (14 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
r5977 r5986 6 6 7 7 from waeup.sirp.university.vocabularies import (course_levels, 8 semester, CourseSource) 8 semester, 9 application_category, 10 study_mode, 11 CourseSource) 9 12 10 13 class IFaculty(IWAeUPContainer): … … 172 175 ) 173 176 174 study_mode = schema. TextLine(177 study_mode = schema.Choice( 175 178 title = u'Study Mode', 179 vocabulary = study_mode, 176 180 default = u'ug_ft', 177 181 required = True, … … 194 198 ) 195 199 196 application_category = schema. TextLine(200 application_category = schema.Choice( 197 201 title = u'Application Category', 202 vocabulary = application_category, 198 203 default = u'basic', 199 required = False,204 required = True, 200 205 ) 201 206 -
main/waeup.sirp/trunk/src/waeup/sirp/university/vocabularies.py
r5977 r5986 1 """Vocabularies and sources for the academics section. 2 """ 3 1 4 from waeup.sirp.interfaces import SimpleWAeUPVocabulary 2 5 from zc.sourcefactory.basic import BasicSourceFactory … … 9 12 10 13 course_levels = SimpleWAeUPVocabulary( 11 (' Year 1 (100)',100),12 (' Year 2 (200)',200),13 (' Year 3 (300)',300),14 (' Year 4 (400)',400),15 (' Year 5 (500)',500),16 (' Year 6 (600)',600),17 (' Year 7 (700)',700),18 (' Year 8 (800)',800),14 ('100 (Year 1)',100), 15 ('200 (Year 2)',200), 16 ('300 (Year 3)',300), 17 ('400 (Year 4)',400), 18 ('500 (Year 5)',500), 19 ('600 (Year 6)',600), 20 ('700 (Year 7)',700), 21 ('800 (Year 8)',800), 19 22 ) 20 23 21 24 semester = SimpleWAeUPVocabulary( 22 ('N/A', 0), ('First Semester', 1), 23 ('Second Semester', 2), ('Combined', 3)) 24 25 ('N/A', 0), 26 ('First Semester', 1), 27 ('Second Semester', 2), 28 ('Combined', 3) 29 ) 30 31 application_category = SimpleWAeUPVocabulary( 32 ('--',''), 33 ('PUME, PDE, PCE, PRENCE','basic'), 34 ('Part-Time, Diploma, Certificate','cest'), 35 ('Sandwich','sandwich'), 36 ('Postgraduate','pg'), 37 ) 38 39 study_mode = SimpleWAeUPVocabulary( 40 ('UME Full Time','ume_ft'), 41 ('Direct Entry Full Time','de_ft'), 42 ('Diploma Full Time','dp_ft'), 43 ('Diploma Part Time','dp_pt'), 44 ('Undergraduate Full Time','ug_ft'), 45 ('Undergraduate Part Time','ug_pt'), 46 ('Postgraduate Full Time','pg_ft'), 47 ('Postgraduate Part Time','pg_pt'), 48 ) 49 50 25 51 class CourseSource(BasicSourceFactory): 26 52 """A course source delivers all courses inside the portal by looking
Note: See TracChangeset for help on using the changeset viewer.