Changeset 15118 for main/waeup.aaue/trunk/src
- Timestamp:
- 3 Sep 2018, 07:22:10 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/interfaces.py
r15099 r15118 52 52 ) 53 53 54 certificate_types_vocab = SimpleKofaVocabulary( 55 (_('Full-time Degree'), 'ft'), 56 (_('Part-time Degree'), 'pt'), 57 (_('Diploma'), 'dp'), 58 (_('Masters Degree'), 'ma'), 59 (_('Doctorate Degree'), 'phd'), 60 ) 61 54 62 class ICustomUGApplicant(IApplicantBaseData): 55 63 """An undergraduate applicant. … … 766 774 required = True, 767 775 readonly = False, 776 ) 777 778 certificate_type = schema.Choice( 779 title = _(u'Certificate Type'), 780 vocabulary = certificate_types_vocab, 781 required = True, 768 782 ) 769 783
Note: See TracChangeset for help on using the changeset viewer.