Changeset 13548


Ignore:
Timestamp:
17 Dec 2015, 06:22:25 (9 years ago)
Author:
Henrik Bettermann
Message:

programme_type must not be required in case of import.

File:
1 edited

Legend:

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

    r13545 r13548  
    6363        title = _(u'Programme Type'),
    6464        vocabulary = programme_types_vocab,
    65         required = True,
     65        required = False,
    6666        )
    6767
     
    540540    """
    541541
     542    programme_type = schema.Choice(
     543        title = _(u'Programme Type'),
     544        vocabulary = programme_types_vocab,
     545        required = True,
     546        )
     547
    542548    date_of_birth = FormattedDate(
    543549        title = _(u'Date of Birth'),
     
    546552        )
    547553
     554ICustomUGApplicantEdit['programme_type'].order = ICustomUGApplicant[
     555    'programme_type'].order
    548556ICustomUGApplicantEdit['date_of_birth'].order = ICustomUGApplicant[
    549557    'date_of_birth'].order
Note: See TracChangeset for help on using the changeset viewer.