Changeset 16465 for main/waeup.kofa/trunk/src/waeup/kofa/university
- Timestamp:
- 16 Apr 2021, 15:12:37 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/university/interfaces.py
r15629 r16465 76 76 def addFaculty(faculty): 77 77 """Add an IFactulty object. 78 79 78 """ 79 80 80 81 class IDepartment(IKofaObject): 81 82 """Representation of a department. … … 137 138 138 139 140 class IFlashNotice(IKofaObject): 141 """An interface for the flash notice edit form page. 142 """ 143 144 flash_notice = schema.TextLine( 145 title = _(u'Flash Notice'), 146 description = _( 147 u'If you save an empty field, all flash notices will be removed.'), 148 required = False, 149 readonly = False, 150 ) 151 152 139 153 class ICoursesContainer(IKofaContainer): 140 154 """A container for faculties. … … 145 159 Returns the key, under which the object was stored. 146 160 """ 161 147 162 148 163 class ICourse(IKofaObject): … … 216 231 default = False, 217 232 ) 233 218 234 219 235 class ICertificate(IKofaObject): … … 341 357 """ 342 358 359 343 360 class ICertificateCourse(IKofaObject): 344 361 """A certificatecourse is referring a course and provides some own
Note: See TracChangeset for help on using the changeset viewer.