Changeset 8646 for main/waeup.uniben/trunk/src/waeup
- Timestamp:
- 7 Jun 2012, 18:36:16 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/interfaces.py
r8582 r8646 328 328 """ 329 329 330 email = schema.ASCIILine( 331 title = _(u'Email Address'), 332 required = True, 333 constraint=validate_email, 334 ) 335 date_of_birth = FormattedDate( 336 title = _(u'Date of Birth'), 337 required = True, 338 show_year = True, 339 ) 340 341 IUGApplicantEdit[ 342 'date_of_birth'].order = IUGApplicant['date_of_birth'].order 343 IUGApplicantEdit[ 344 'email'].order = IUGApplicant['email'].order 345 330 346 class IPGApplicantEdit(IPGApplicant): 331 347 """A postgraduate applicant interface for editing. … … 340 356 """ 341 357 358 email = schema.ASCIILine( 359 title = _(u'Email Address'), 360 required = True, 361 constraint=validate_email, 362 ) 363 date_of_birth = FormattedDate( 364 title = _(u'Date of Birth'), 365 required = True, 366 show_year = True, 367 ) 368 369 IPGApplicantEdit[ 370 'date_of_birth'].order = IPGApplicant['date_of_birth'].order 371 IPGApplicantEdit[ 372 'email'].order = IPGApplicant['email'].order 373 342 374 class ICustomApplicantOnlinePayment(ICustomOnlinePayment): 343 375 """An applicant payment via payment gateways.
Note: See TracChangeset for help on using the changeset viewer.