Ignore:
Timestamp:
7 Feb 2017, 08:33:05 (8 years ago)
Author:
Henrik Bettermann
Message:

Add officer name fields do IDepartment and IFaculty. Plugins must be updated!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/university/interfaces.py

    r13617 r14511  
    5656        )
    5757
     58    officer_1 = schema.TextLine(
     59        title = _(u'Faculty Officer 1'),
     60        default = u'',
     61        required = False,
     62        )
     63
     64    officer_2 = schema.TextLine(
     65        title = _(u'Faculty Officer 2'),
     66        default = u'',
     67        required = False,
     68        )
     69
    5870
    5971class IFacultiesContainer(IKofaContainer):
     
    93105        required = False,
    94106        default = False,
     107        )
     108
     109    officer_1 = schema.TextLine(
     110        title = _(u'Department Officer 1'),
     111        default = u'',
     112        required = False,
     113        )
     114
     115    officer_2 = schema.TextLine(
     116        title = _(u'Department Officer 2'),
     117        default = u'',
     118        required = False,
     119        )
     120
     121    officer_3 = schema.TextLine(
     122        title = _(u'Department Officer 3'),
     123        default = u'',
     124        required = False,
     125        )
     126
     127    officer_4 = schema.TextLine(
     128        title = _(u'Department Officer 4'),
     129        default = u'',
     130        required = False,
    95131        )
    96132
Note: See TracChangeset for help on using the changeset viewer.