Ignore:
Timestamp:
5 Jul 2012, 20:16:18 (12 years ago)
Author:
Henrik Bettermann
Message:

Extend INigeriaStudentPersonal

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/students/interfaces.py

    r8863 r8923  
    6161        )
    6262
     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
    6399class INigeriaUGStudentClearance(IUGStudentClearance):
    64100    """Representation of ug student clearance data.
Note: See TracChangeset for help on using the changeset viewer.