- Timestamp:
- 23 Aug 2017, 09:28:36 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/applicants/browser.py
r14093 r14814 23 23 from waeup.kofa.widgets.datewidget import FriendlyDatetimeDisplayWidget 24 24 from zope.formlib.textwidgets import BytesDisplayWidget 25 from waeup.kofa.browser.layout import action, NullValidator 25 26 from waeup.kofa.students.interfaces import IStudentsUtils 26 27 from waeup.kofa.applicants.browser import (ApplicantDisplayFormPage, … … 29 30 OnlinePaymentDisplayFormPage, 30 31 OnlinePaymentBreadcrumb, ExportPDFPaymentSlipPage, 32 ApplicantsRootManageFormPage 31 33 ) 32 34 from waeup.kofa.applicants.viewlets import ( … … 61 63 return _('Download application slip') 62 64 65 class NigeriaApplicantsRootManageFormPage(ApplicantsRootManageFormPage): 66 67 @action(_('Add applicants container'), 68 tooltip=_( 69 'Please read chapter ' 70 '\'Preparation and Maintenance of Applicants Containers\' ' 71 '(Kofa Docs) before activating the application.'), 72 validator=NullValidator) 73 def addApplicantsContainer(self, **data): 74 self.redirect(self.url(self.context, '@@add')) 75 return 76 63 77 class NigeriaApplicantDisplayFormPage(ApplicantDisplayFormPage): 64 78 """A display view for applicant data.
Note: See TracChangeset for help on using the changeset viewer.