- Timestamp:
- 7 Feb 2017, 08:33:05 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/university/interfaces.py
r13617 r14511 56 56 ) 57 57 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 58 70 59 71 class IFacultiesContainer(IKofaContainer): … … 93 105 required = False, 94 106 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, 95 131 ) 96 132
Note: See TracChangeset for help on using the changeset viewer.