Changeset 5681
- Timestamp:
- 25 Jan 2011, 16:34:31 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/interfaces.py
r5676 r5681 23 23 """ 24 24 from zope import schema 25 from waeup.sirp.interfaces import IWAeUPObject 25 from waeup.sirp.interfaces import IWAeUPObject, SimpleWAeUPVocabulary 26 27 #: Categories of applications we support. 28 #: Yet not complete nor correct. 29 APPLICATION_CATEGORIES = ( 30 ('Direct Entry Screening Exam (PDE)', 'pde'), 31 ('Post-UME', 'pume'), 32 ('Post-UDE', 'pude'), 33 ('PCE', 'pce'), 34 ('Common Entry Screening Test (CEST)', 'cest'), 35 ) 36 37 #: A :class:`waeup.sirp.interfaces.SimpleWAeUPVocabulary` of supported 38 #: application categories. 39 application_categories_vocab = SimpleWAeUPVocabulary(*APPLICATION_CATEGORIES) 26 40 27 41 class IApplicantsRoot(IWAeUPObject):
Note: See TracChangeset for help on using the changeset viewer.