Changeset 4131 for waeup/branches/ulif-rewrite/src
- Timestamp:
- 15 May 2009, 12:53:30 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup/branches/ulif-rewrite/src/waeup/interfaces.py
r4126 r4131 37 37 """Representation of a university faculty. 38 38 """ 39 name = schema.TextLine(39 title = schema.TextLine( 40 40 title = u'Name of Faculty', 41 41 default = u'Unnamed', … … 43 43 ) 44 44 45 title_prefix = schema.TextLine( 46 title = u'Title prefix', 47 default = u'faculty', 48 required = True, 49 ) 50 51 code = schema.TextLine( 52 title = u'Code', 53 description = u'Abbreviated code of the faculty', 54 required = True, 55 ) 56 45 57 class IFacultyContainer(IWAeUPContainer): 46 58 """A container for faculties.
Note: See TracChangeset for help on using the changeset viewer.