Changeset 10529 for main/waeup.fceokene/trunk/src/waeup/fceokene/applicants
- Timestamp:
- 23 Aug 2013, 10:38:21 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/applicants/browser.py
r9481 r10529 23 23 from waeup.kofa.widgets.datewidget import FriendlyDatetimeDisplayWidget 24 24 from zope.formlib.textwidgets import BytesDisplayWidget 25 from waeup.kofa.applicants.browser import (ApplicantDisplayFormPage,26 ApplicantManageFormPage, ApplicantEditFormPage)27 25 from waeup.kofa.applicants.viewlets import ( 28 26 PaymentReceiptActionButton, PDFActionButton) 29 27 from waeup.kofa.applicants.pdf import PDFApplicationSlip 28 29 from kofacustom.nigeria.applicants.browser import ( 30 NigeriaExportPDFPaymentSlipPage, NigeriaApplicantManageFormPage, 31 NigeriaApplicantDisplayFormPage, NigeriaApplicantEditFormPage) 32 30 33 from kofacustom.nigeria.applicants.interfaces import ( 31 34 UG_OMIT_DISPLAY_FIELDS, … … 42 45 ) 43 46 44 class CustomApplicantDisplayFormPage( ApplicantDisplayFormPage):47 class CustomApplicantDisplayFormPage(NigeriaApplicantDisplayFormPage): 45 48 """A display view for applicant data. 46 49 """ … … 94 97 return form_fields 95 98 96 class CustomApplicantManageFormPage(ApplicantManageFormPage): 99 class CustomExportPDFPaymentSlipPage(NigeriaExportPDFPaymentSlipPage): 100 """Deliver a PDF slip of the context. 101 """ 102 103 note = ''' 104 105 106 The total authorized amount includes an Interswitch transaction charge of 150 Nairas. 107 ''' 108 109 class CustomApplicantManageFormPage(NigeriaApplicantManageFormPage): 97 110 """A full edit view for applicant data. 98 111 """ … … 112 125 return form_fields 113 126 114 class CustomApplicantEditFormPage( ApplicantEditFormPage):127 class CustomApplicantEditFormPage(NigeriaApplicantEditFormPage): 115 128 """An applicant-centered edit view for applicant data. 116 129 """
Note: See TracChangeset for help on using the changeset viewer.