Ignore:
Timestamp:
3 Dec 2016, 08:29:30 (8 years ago)
Author:
Henrik Bettermann
Message:

Add AlumniRequestPasswordPage?.

File:
1 edited

Legend:

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

    r14304 r14306  
    551551
    552552    dispatch_address = schema.Text(
    553         title = _(u'Dispatch Address'),
    554         description = u'Address to which transcript should be posted.',
     553        title = _(u'Dispatch Addresses'),
     554        description = u'Addresses to which transcript should be posted.',
    555555        required = False,
    556556        readonly = False,
     
    607607        )
    608608
     609    no_copies = schema.Choice(
     610        title = _(u'Number of Copies'),
     611        description = u'Must correspond with the number of dispatch addresses above.',
     612        values=[1, 2, 3, 4],
     613        required = False,
     614        readonly = False,
     615        default = 1,
     616        )
     617
    609618class ICertificateRequest(IKofaObject):
    610619    """A transcript applicant.
     
    688697
    689698    dispatch_address = schema.Text(
    690         title = _(u'Dispatch Address'),
    691         description = u'Address to which certificate should be posted.',
     699        title = _(u'Dispatch Addresses'),
     700        description = u'Addresses to which certificate should be posted.',
    692701        required = False,
    693702        readonly = False,
     
    713722        required = False,
    714723        readonly = False,
     724        )
     725
     726    no_copies = schema.Choice(
     727        title = _(u'Number of Copies'),
     728        description = u'Must correspond with the number of dispatch addresses above.',
     729        values=[1, 2, 3, 4],
     730        required = False,
     731        readonly = False,
     732        default = 1,
    715733        )
    716734
Note: See TracChangeset for help on using the changeset viewer.