Changeset 8533


Ignore:
Timestamp:
27 May 2012, 16:50:15 (12 years ago)
Author:
Henrik Bettermann
Message:

Edit docstring and change order of fields.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/interfaces.py

    r8525 r8533  
    310310    the derived interfaces below, which set more fields to required
    311311    state, depending on use-case.
    312 
    313     This base interface is also implemented by the
    314     :class:`waeup.kofa.students.StudentApplication` class in the
    315     students package. Thus, these are the data which are saved after
    316     admission.
    317312    """
    318313
     
    402397        required = False,
    403398        )
     399    student_id = schema.TextLine(
     400        title = _(u'Student Id'),
     401        required = False,
     402        readonly = False,
     403        )
    404404    course_admitted = schema.Choice(
    405405        title = _(u'Admitted Course of Study'),
    406406        source = CertificateSource(),
    407407        required = False,
    408         )
    409     student_id = schema.TextLine(
    410         title = _(u'Student Id'),
    411         required = False,
    412         readonly = False,
    413408        )
    414409    locked = schema.Bool(
Note: See TracChangeset for help on using the changeset viewer.