- Timestamp:
- 10 Dec 2013, 06:24:03 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/interfaces.py
r10384 r10831 36 36 from waeup.kofa.schema import PhoneNumber 37 37 from waeup.kofa.students.vocabularies import GenderSource, RegNumberSource 38 from waeup.kofa.university.vocabularies import AppCatSource, CertificateSource 38 from waeup.kofa.university.vocabularies import ( 39 AppCatSource, CertificateSource, SpecialApplicationSource) 39 40 40 41 #: Maximum upload size for applicant passport photographs (in bytes) … … 442 443 ) 443 444 445 special_application = schema.Choice( 446 title = _(u'Special Application'), 447 source = SpecialApplicationSource(), 448 required = False, 449 ) 450 444 451 class IApplicant(IApplicantBaseData): 445 452 """An applicant. … … 497 504 readonly = True, 498 505 ) 506 special_application = schema.Choice( 507 title = _(u'Special Application'), 508 source = SpecialApplicationSource(), 509 required = True, 510 ) 499 511 500 512 IApplicantEdit['email'].order = IApplicantEdit[
Note: See TracChangeset for help on using the changeset viewer.