Changeset 14306 for main/waeup.aaue/trunk/src/waeup/aaue/applicants
- Timestamp:
- 3 Dec 2016, 08:29:30 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/interfaces.py
r14304 r14306 551 551 552 552 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.', 555 555 required = False, 556 556 readonly = False, … … 607 607 ) 608 608 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 609 618 class ICertificateRequest(IKofaObject): 610 619 """A transcript applicant. … … 688 697 689 698 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.', 692 701 required = False, 693 702 readonly = False, … … 713 722 required = False, 714 723 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, 715 733 ) 716 734
Note: See TracChangeset for help on using the changeset viewer.