Changeset 10592


Ignore:
Timestamp:
6 Sep 2013, 05:00:57 (11 years ago)
Author:
Henrik Bettermann
Message:

Revert changes from last revision. These are customizations for the KwaraPoly? package only.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/applicants/interfaces.py

    r10591 r10592  
    100100    adding them to the UG_OMIT* tuples.
    101101    """
    102     sex = schema.Choice(
    103         title = _(u'Sex'),
    104         source = GenderSource(),
    105         required = False,
    106         )
     102
    107103    nationality = schema.Choice(
    108104        source = nats_vocab,
     
    122118        title = _(u'1st Choice Course of Study'),
    123119        source = AppCatCertificateSource(),
    124         required = False,
     120        required = True,
    125121        )
    126122    course2 = schema.Choice(
     
    211207        )
    212208
    213 INigeriaUGApplicant[
    214     'sex'].order =  IApplicantBaseData['sex'].order
    215209INigeriaUGApplicant[
    216210    'locked'].order =  IApplicantBaseData['suspended'].order
     
    430424        constraint=validate_email,
    431425        )
    432     sex = schema.Choice(
    433         title = _(u'Sex'),
    434         source = GenderSource(),
    435         required = True,
    436         )
    437426    date_of_birth = FormattedDate(
    438427        title = _(u'Date of Birth'),
    439428        required = True,
    440429        show_year = True,
    441         )
    442     course1 = schema.Choice(
    443         title = _(u'1st Choice Course of Study'),
    444         source = AppCatCertificateSource(),
    445         required = True,
    446430        )
    447431
     
    449433    'date_of_birth'].order =  INigeriaUGApplicant['date_of_birth'].order
    450434INigeriaUGApplicantEdit[
    451     'sex'].order =  INigeriaUGApplicant['sex'].order
    452 INigeriaUGApplicantEdit[
    453435    'email'].order =  INigeriaUGApplicant['email'].order
    454 INigeriaUGApplicantEdit[
    455     'course1'].order =  INigeriaUGApplicant['course1'].order
    456436
    457437class INigeriaPGApplicantEdit(INigeriaPGApplicant):
Note: See TracChangeset for help on using the changeset viewer.