- Timestamp:
- 19 Jun 2019, 07:24:30 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/interfaces.py
r15459 r15462 837 837 ) 838 838 839 course1 = schema.Choice( 840 title = _(u'1st Choice Course of Study'), 841 source = AppCatCertificateSource(), 842 required = True, 843 ) 844 845 course2 = schema.Choice( 846 title = _(u'2nd Choice Course of Study'), 847 source = AppCatCertificateSource(), 848 required = True, 849 ) 850 851 course3 = schema.Choice( 852 title = _(u'3rd Choice Course of Study'), 853 source = AppCatCertificateSource(), 854 required = True, 855 ) 856 839 857 fst_sit_fname = schema.TextLine( 840 858 title = _(u'Full Name'), … … 888 906 ICustomUGApplicantEdit['date_of_birth'].order = ICustomUGApplicant[ 889 907 'date_of_birth'].order 908 ICustomUGApplicantEdit['course1'].order = ICustomUGApplicant[ 909 'course1'].order 910 ICustomUGApplicantEdit['course2'].order = ICustomUGApplicant[ 911 'course2'].order 912 ICustomUGApplicantEdit['course3'].order = ICustomUGApplicant[ 913 'course3'].order 890 914 ICustomUGApplicantEdit['fst_sit_fname'].order = ICustomUGApplicant[ 891 915 'fst_sit_fname'].order
Note: See TracChangeset for help on using the changeset viewer.