Ignore:
Timestamp:
29 Jan 2014, 06:54:33 (11 years ago)
Author:
Henrik Bettermann
Message:

Add higher education fields.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/applicants/interfaces.py

    r10924 r10998  
    180180        default = [],
    181181        )
     182    hq_type = schema.Choice(
     183        title = _(u'Qualification Obtained'),
     184        required = False,
     185        readonly = False,
     186        vocabulary = high_qual,
     187        )
     188
     189    hq_fname = schema.TextLine(
     190        title = _(u'Full Name'),
     191        required = False,
     192        readonly = False,
     193        )
     194
     195    hq_matric_no = schema.TextLine(
     196        title = _(u'Former Matric Number'),
     197        required = False,
     198        readonly = False,
     199        )
     200
     201    hq_degree = schema.Choice(
     202        title = _(u'Class of Degree'),
     203        required = False,
     204        readonly = False,
     205        vocabulary = high_grade,
     206        )
     207
     208    hq_school = schema.TextLine(
     209        title = _(u'Institution Attended'),
     210        required = False,
     211        readonly = False,
     212        )
     213
     214    hq_session = schema.TextLine(
     215        title = _(u'Years Attended'),
     216        required = False,
     217        readonly = False,
     218        )
     219
     220    hq_disc = schema.TextLine(
     221        title = _(u'Discipline'),
     222        required = False,
     223        readonly = False,
     224        )
    182225    notice = schema.Text(
    183226        title = _(u'Notice'),
Note: See TracChangeset for help on using the changeset viewer.