Ignore:
Timestamp:
11 Oct 2019, 11:31:38 (5 years ago)
Author:
Henrik Bettermann
Message:

Start configuration of school fee payments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/browser/pages.py

    r15563 r15661  
    3434    form_fields = grok.AutoFields(ICustomSessionConfiguration)
    3535
     36class CustomCertificatePage(CertificatePage):
     37    """Index page for certificates.
     38    """
     39    form_fields = grok.AutoFields(ICertificate).omit(
     40        'ratio', 'school_fee_3', 'school_fee_4',
     41        'custom_textline_1', 'custom_textline_2',
     42        'custom_float_1','custom_float_2')
     43
     44class CustomCertificateManageFormPage(CertificateManageFormPage):
     45    """Manage the properties of a `Certificate` instance.
     46    """
     47    form_fields = grok.AutoFields(ICertificate).omit(
     48        'ratio', 'school_fee_3', 'school_fee_4',
     49        'custom_textline_1', 'custom_textline_2',
     50        'custom_float_1','custom_float_2', 'code')
     51
Note: See TracChangeset for help on using the changeset viewer.