Changeset 17201 for main/kofacustom.lpng/trunk/src/kofacustom/lpng/browser
- Timestamp:
- 1 Dec 2022, 15:57:05 (2 years ago)
- Location:
- main/kofacustom.lpng/trunk/src/kofacustom/lpng/browser
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.lpng/trunk/src/kofacustom/lpng/browser/pages.py
r16993 r17201 17 17 ## 18 18 import grok 19 from waeup.kofa.interfaces import IKofaUtils, IKofaObject 19 from zope.component import ( 20 getUtility, queryUtility, createObject, getAllUtilitiesRegisteredFor, 21 getUtilitiesFor, 22 ) 23 from waeup.kofa.interfaces import IKofaUtils, IKofaObject, ICSVExporter 20 24 from waeup.kofa.browser.pages import ( 21 25 SessionConfigurationAddFormPage, SessionConfigurationManageFormPage, 22 LoginPage, CertificatePage, CertificateManageFormPage) 26 LoginPage, CertificatePage, CertificateManageFormPage, 27 ExportCSVPage) 23 28 from waeup.kofa.university.interfaces import ICertificate 24 29 from kofacustom.lpng.interfaces import ( 25 30 ICustomSessionConfiguration, ICustomSessionConfigurationAdd) 31 32 grok.templatedir('templates') 26 33 27 34 class CustomSessionConfigurationAddFormPage(SessionConfigurationAddFormPage): … … 35 42 form_fields = grok.AutoFields(ICustomSessionConfiguration) 36 43 44 class CustomExportCSVPage(ExportCSVPage): 45 46 grok.template('datacenterexportpage') 47 48 def getExporters(self): 49 title_name_tuples = [ 50 (u'Registrants', u'applicants'), 51 (u'Registrant Payments', u'applicantpayments'), 52 (u'Registrants Containers', u'applicantscontainers'), 53 (u'Users', u'users'), 54 ] 55 return sorted(title_name_tuples)
Note: See TracChangeset for help on using the changeset viewer.