Changeset 10202 for main/waeup.uniben/trunk/src
- Timestamp:
- 22 May 2013, 19:00:45 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/browser/pages.py
r9709 r10202 19 19 from waeup.kofa.browser.pages import ( 20 20 SessionConfigurationAddFormPage, SessionConfigurationManageFormPage, 21 LoginPage) 21 LoginPage, CertificatePage, CertificateManageFormPage) 22 from waeup.kofa.university.interfaces import ICertificate 22 23 from waeup.uniben.interfaces import ( 23 24 ICustomSessionConfiguration, ICustomSessionConfigurationAdd) … … 37 38 def _comment(self, student): 38 39 return None 40 41 class CustomCertificatePage(CertificatePage): 42 """Index page for certificates. 43 """ 44 form_fields = grok.AutoFields(ICertificate).omit( 45 'ratio', 46 'custom_textline_1', 'custom_textline_2', 47 'custom_float_1', 'custom_float_2') 48 49 class CustomCertificateManageFormPage(CertificateManageFormPage): 50 """Manage the properties of a `Certificate` instance. 51 """ 52 form_fields = grok.AutoFields(ICertificate).omit( 53 'ratio', 54 'custom_textline_1', 'custom_textline_2', 55 'custom_float_1', 'custom_float_2')
Note: See TracChangeset for help on using the changeset viewer.