Changeset 8923 for main/kofacustom.nigeria/trunk/src/kofacustom/nigeria
- Timestamp:
- 5 Jul 2012, 20:16:18 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/students/interfaces.py
r8863 r8923 61 61 ) 62 62 63 religion = schema.Choice( 64 title = u'Religion', 65 default = 'no_say', 66 required = False, 67 vocabulary = SimpleKofaVocabulary( 68 (_('Muslim'), 'muslim'), 69 (_('Christian'), 'christian'), 70 (_('Others'), 'others'), 71 (_('Prefer not to say'), 'no_say'),) 72 ) 73 74 next_kin_name = schema.TextLine( 75 title = _(u'Next of Kin Name'), 76 required = False, 77 readonly = False, 78 ) 79 80 next_kin_relation = schema.TextLine( 81 title = _(u'Next of Kin Relationship'), 82 required = False, 83 readonly = False, 84 ) 85 86 next_kin_address = schema.Text( 87 title = _(u'Next of Kin Address'), 88 required = False, 89 readonly = False, 90 description = _(u'Please provide email address and/or phone number.'), 91 ) 92 93 disabled = schema.Bool( 94 title = u'Disabled', 95 default = False, 96 required = False, 97 ) 98 63 99 class INigeriaUGStudentClearance(IUGStudentClearance): 64 100 """Representation of ug student clearance data.
Note: See TracChangeset for help on using the changeset viewer.