Changeset 13608 for main/waeup.kofa


Ignore:
Timestamp:
13 Jan 2016, 06:34:39 (9 years ago)
Author:
Henrik Bettermann
Message:

Add next_matric_integer_3 field.

Location:
main/waeup.kofa/trunk/src/waeup/kofa
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/browser/pages.py

    r13496 r13608  
    10201020    # We don't need to edit next matric integers in the base package.
    10211021    form_fields = grok.AutoFields(IConfigurationContainer).omit(
    1022         'frontpage_dict', 'next_matric_integer', 'next_matric_integer_2')
     1022        'frontpage_dict',
     1023        'next_matric_integer',
     1024        'next_matric_integer_2',
     1025        'next_matric_integer_3')
    10231026    form_fields['maintmode_enabled_by'].for_display = True
    10241027
  • main/waeup.kofa/trunk/src/waeup/kofa/interfaces.py

    r13574 r13608  
    733733        )
    734734
     735    next_matric_integer_3 = schema.Int(
     736        title = _(u'Next Matriculation Number Integer 3'),
     737        description = _(u'3rd integer used for constructing the next '
     738                         'matriculation number'),
     739        default = 0,
     740        readonly = False,
     741        required = False,
     742        )
     743
    735744    export_disabled_message = schema.Text(
    736745        title = _(u'Export-disabled message'),
Note: See TracChangeset for help on using the changeset viewer.