Changeset 16622 for main/kofacustom.edocons/trunk/src
- Timestamp:
- 16 Sep 2021, 18:39:18 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/interfaces.py
r16618 r16622 26 26 from waeup.kofa.interfaces import ( 27 27 SimpleKofaVocabulary, academic_sessions_vocab, validate_email) 28 from waeup.kofa.schema import FormattedDate, TextLineChoice 28 from waeup.kofa.schema import FormattedDate, TextLineChoice, PhoneNumber 29 29 from waeup.kofa.students.vocabularies import nats_vocab, GenderSource 30 30 from waeup.kofa.applicants.interfaces import ( … … 77 77 required = False, 78 78 ) 79 80 next_kin_name = schema.TextLine( 81 title = _(u'Next of Kin Name'), 82 required = False, 83 readonly = False, 84 ) 85 86 next_kin_relation = schema.TextLine( 87 title = _(u'Next of Kin Relationship'), 88 required = False, 89 readonly = False, 90 ) 91 92 next_kin_address = schema.Text( 93 title = _(u'Next of Kin Address'), 94 required = False, 95 readonly = False, 96 ) 97 98 next_kin_phone = PhoneNumber( 99 title = _(u'Next of Kin Phone'), 100 description = u'', 101 required = False, 102 readonly = False, 103 ) 104 79 105 course1 = schema.Choice( 80 106 title = _(u'1st Choice Course of Study'),
Note: See TracChangeset for help on using the changeset viewer.