Changeset 12970 for main/waeup.kwarapoly


Ignore:
Timestamp:
20 May 2015, 04:49:47 (9 years ago)
Author:
Henrik Bettermann
Message:

Make date_of_birth compulsory.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/applicants/interfaces.py

    r12142 r12970  
    321321        required = True,
    322322        )
     323    date_of_birth = FormattedDate(
     324        title = _(u'Date of Birth'),
     325        required = True,
     326        show_year = True,
     327        )
    323328    sex = schema.Choice(
    324329        title = _(u'Sex'),
     
    356361ICustomUGApplicantEdit[
    357362    'course1'].order =  ICustomUGApplicant['course1'].order
     363ICustomUGApplicantEdit[
     364    'date_of_birth'].order =  ICustomUGApplicant['date_of_birth'].order
    358365ICustomUGApplicantEdit[
    359366    'sex'].order =  ICustomUGApplicant['sex'].order
Note: See TracChangeset for help on using the changeset viewer.