Changeset 10500
- Timestamp:
- 14 Aug 2013, 12:28:57 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/applicants/interfaces.py
r9500 r10500 183 183 required = False, 184 184 ) 185 jamb_reg_number = schema.TextLine( 186 title = _(u'JAMB Registration Number'), 187 required = False, 188 ) 185 189 notice = schema.Text( 186 190 title = _(u'Notice'), … … 275 279 ) 276 280 281 ICustomUGApplicantEdit[ 282 'date_of_birth'].order = ICustomUGApplicant['date_of_birth'].order 283 ICustomUGApplicantEdit[ 284 'email'].order = ICustomUGApplicant['email'].order 285 ICustomUGApplicantEdit[ 286 'jamb_reg_number'].order = ICustomUGApplicant['reg_number'].order 287 277 288 class ICustomPGApplicantEdit(ICustomPGApplicant): 278 289 """A postgraduate applicant interface for editing. … … 298 309 ) 299 310 311 ICustomPGApplicantEdit[ 312 'date_of_birth'].order = ICustomPGApplicant['date_of_birth'].order 313 ICustomPGApplicantEdit[ 314 'email'].order = ICustomPGApplicant['email'].order 315 316 300 317 class ICustomApplicantOnlinePayment(INigeriaApplicantOnlinePayment): 301 318 """An applicant payment via payment gateways.
Note: See TracChangeset for help on using the changeset viewer.