Changeset 8533 for main/waeup.kofa
- Timestamp:
- 27 May 2012, 16:50:15 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/interfaces.py
r8525 r8533 310 310 the derived interfaces below, which set more fields to required 311 311 state, depending on use-case. 312 313 This base interface is also implemented by the314 :class:`waeup.kofa.students.StudentApplication` class in the315 students package. Thus, these are the data which are saved after316 admission.317 312 """ 318 313 … … 402 397 required = False, 403 398 ) 399 student_id = schema.TextLine( 400 title = _(u'Student Id'), 401 required = False, 402 readonly = False, 403 ) 404 404 course_admitted = schema.Choice( 405 405 title = _(u'Admitted Course of Study'), 406 406 source = CertificateSource(), 407 407 required = False, 408 )409 student_id = schema.TextLine(410 title = _(u'Student Id'),411 required = False,412 readonly = False,413 408 ) 414 409 locked = schema.Bool(
Note: See TracChangeset for help on using the changeset viewer.