Changeset 10205 for main/waeup.futminna/trunk/src/waeup/futminna/browser
- Timestamp:
- 22 May 2013, 19:07:23 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.futminna/trunk/src/waeup/futminna/browser/pages.py
r8619 r10205 18 18 import grok 19 19 from waeup.kofa.browser.pages import ( 20 SessionConfigurationAddFormPage, SessionConfigurationManageFormPage) 20 SessionConfigurationAddFormPage, SessionConfigurationManageFormPage, 21 CertificatePage, CertificateManageFormPage) 22 from waeup.kofa.university.interfaces import ICertificate 21 23 from waeup.futminna.interfaces import ( 22 24 ICustomSessionConfiguration, ICustomSessionConfigurationAdd) … … 31 33 """ 32 34 form_fields = grok.AutoFields(ICustomSessionConfiguration) 35 36 class CustomCertificatePage(CertificatePage): 37 """Index page for certificates. 38 """ 39 form_fields = grok.AutoFields(ICertificate).omit( 40 'ratio', 'custom_textline_2', 'custom_float_2') 41 42 class CustomCertificateManageFormPage(CertificateManageFormPage): 43 """Manage the properties of a `Certificate` instance. 44 """ 45 form_fields = grok.AutoFields(ICertificate).omit( 46 'ratio', 'custom_textline_2','custom_float_2')
Note: See TracChangeset for help on using the changeset viewer.