Changeset 16287 for main/kofacustom.iuokada
- Timestamp:
- 28 Oct 2020, 20:34:03 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants/interfaces.py
r16281 r16287 146 146 147 147 email = TextLineChoice( 148 title = _(u'Email Address Test'),149 required = False,148 title = _(u'Email Address'), 149 required = True, 150 150 constraint=validate_email, 151 151 source = contextual_email_source, … … 182 182 required = False, 183 183 ) 184 #perm_address = schema.Text(185 # title = _(u'PermanentAddress'),186 # required = False,187 #)184 perm_address = schema.Text( 185 title = _(u'Residential Address'), 186 required = True, 187 ) 188 188 parents_name = schema.TextLine( 189 189 title = _(u'Full Name'), … … 389 389 390 390 email = TextLineChoice( 391 title = _(u'Email Address Test'),392 required = False,391 title = _(u'Email Address'), 392 required = True, 393 393 constraint=validate_email, 394 394 source = contextual_email_source, 395 ) 396 397 perm_address = schema.Text( 398 title = _(u'Residential Address'), 399 required = True, 395 400 ) 396 401 … … 432 437 ICustomPGApplicant[ 433 438 'nysc_number'].order = ICustomPGApplicant['nysc_year'].order 439 ICustomPGApplicant[ 440 'perm_address'].order = ICustomPGApplicant['lga'].order 441 ICustomPGApplicant[ 442 'email'].order = ICustomPGApplicant['lga'].order 434 443 435 444 class ITranscriptApplicant(IKofaObject): … … 619 628 ) 620 629 email = TextLineChoice( 621 title = _(u'Email Address Test'),630 title = _(u'Email Address'), 622 631 required = False, 623 632 constraint=validate_email, … … 655 664 ) 656 665 email = TextLineChoice( 657 title = _(u'Email Address Test'),666 title = _(u'Email Address'), 658 667 required = False, 659 668 constraint=validate_email, … … 680 689 681 690 email = TextLineChoice( 682 title = _(u'Email Address Test'),691 title = _(u'Email Address'), 683 692 required = False, 684 693 constraint=validate_email,
Note: See TracChangeset for help on using the changeset viewer.