Changeset 14212 for main/waeup.uniben
- Timestamp:
- 4 Oct 2016, 08:05:11 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/interfaces.py
r14153 r14212 421 421 """ 422 422 423 class ICustomUGApplicantEdit(I NigeriaUGApplicantEdit):423 class ICustomUGApplicantEdit(ICustomUGApplicant): 424 424 """An undergraduate applicant interface for edit forms. 425 425 … … 432 432 respective form page. 433 433 """ 434 435 email = schema.ASCIILine( 436 title = _(u'Email Address'), 437 required = True, 438 constraint=validate_email, 439 ) 440 date_of_birth = FormattedDate( 441 title = _(u'Date of Birth'), 442 required = True, 443 show_year = True, 444 ) 445 446 ICustomUGApplicantEdit[ 447 'date_of_birth'].order = ICustomUGApplicant['date_of_birth'].order 448 ICustomUGApplicantEdit[ 449 'email'].order = ICustomUGApplicant['email'].order 434 450 435 451 class ICustomPGApplicantEdit(INigeriaPGApplicantEdit):
Note: See TracChangeset for help on using the changeset viewer.