- Timestamp:
- 1 Dec 2022, 15:57:05 (2 years ago)
- Location:
- main/kofacustom.lpng/trunk/src/kofacustom/lpng/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.lpng/trunk/src/kofacustom/lpng/applicants/browser.py
r17195 r17201 34 34 BalancePaymentAddFormPage, 35 35 ExportPDFPaymentSlipPage, 36 ApplicantBaseDisplayFormPage) 36 ApplicantBaseDisplayFormPage, 37 ExportJobContainerJobStart) 37 38 from waeup.kofa.applicants.workflow import ( 38 39 INITIALIZED, STARTED, PAID, SUBMITTED, … … 52 53 from kofacustom.lpng.interfaces import MessageFactory as _ 53 54 55 56 class CustomExportJobContainerJobStart(ExportJobContainerJobStart): 57 """View that starts three export jobs, one for applicants, a second 58 one for applicant payments and a third for referee reports. 59 """ 60 61 EXPORTER_LIST = ('applicants', 62 'applicantpayments', 63 ) 54 64 55 65 class CustomApplicantDisplayFormPage(ApplicantDisplayFormPage): -
main/kofacustom.lpng/trunk/src/kofacustom/lpng/applicants/interfaces.py
r17192 r17201 253 253 email = schema.ASCIILine( 254 254 title = _(u'Email Address'), 255 required = True,255 required = False, 256 256 constraint=validate_email, 257 257 ) … … 313 313 ) 314 314 315 email = schema.ASCIILine( 316 title = _(u'Email Address'), 317 required = True, 318 constraint=validate_email, 319 ) 320 315 321 ICustomApplicantEdit['reg_number'].order = ICustomApplicant['reg_number'].order 322 ICustomApplicantEdit['email'].order = ICustomApplicant['email'].order 316 323 317 324 class ICustomApplicantOnlinePayment(INigeriaApplicantOnlinePayment):
Note: See TracChangeset for help on using the changeset viewer.