- Timestamp:
- 20 Jun 2009, 19:22:02 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup/branches/ulif-rewrite/src/waeup/interfaces.py
r4310 r4320 222 222 """ 223 223 224 class ICertificateCourse(IWAeUPObject): 225 """A course as part of a certificate. 226 """ 227 course = Attribute("A course instance.") 228 229 level = schema.Int( 230 title = u'Level of this course', 231 required = True, 232 default = 100 233 ) 234 235 core_or_elective = schema.Bool( 236 title = u'Is mandatory course (not elective)', 237 required = True, 238 default = True 239 ) 240 224 241 class IWAeUPExporter(Interface): 225 242 """An exporter for objects.
Note: See TracChangeset for help on using the changeset viewer.