Changeset 18082


Ignore:
Timestamp:
4 Jun 2025, 15:41:30 (39 hours ago)
Author:
Henrik Bettermann
Message:

Make phone field required.

File:
1 edited

Legend:

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

    r18029 r18082  
    250250        title = _(u'Phone'),
    251251        description = u'',
    252         required = False,
     252        required = True,
    253253        )
    254254
     
    718718    """
    719719
     720    phone = PhoneNumber(
     721        title = _(u'Phone'),
     722        description = u'',
     723        required = True,
     724        )
     725
    720726    disabilities = schema.Choice(
    721727        title = _(u'Disabilities'),
     
    912918
    913919ICustomUGApplicant[
     920    'phone'].order =  IApplicantBaseData['phone'].order
     921ICustomUGApplicant[
    914922    'locked'].order =  IApplicantBaseData['suspended'].order
    915923ICustomUGApplicant[
Note: See TracChangeset for help on using the changeset viewer.