Changeset 10998 for main/waeup.aaue/trunk/src/waeup/aaue/applicants
- Timestamp:
- 29 Jan 2014, 06:54:33 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/interfaces.py
r10924 r10998 180 180 default = [], 181 181 ) 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 ) 182 225 notice = schema.Text( 183 226 title = _(u'Notice'),
Note: See TracChangeset for help on using the changeset viewer.