Changeset 16153


Ignore:
Timestamp:
9 Jul 2020, 03:40:50 (4 years ago)
Author:
Henrik Bettermann
Message:

More fields.

File:
1 edited

Legend:

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

    r16152 r16153  
    275275        )
    276276
    277     #reg_number = schema.TextLine(
    278     #    title = _(u'Registration Number'),
    279     #    readonly = False,
    280     #    required = False,
    281     #    )
    282 
    283277    matric_number = schema.TextLine(
    284278        title = _(u'Matriculation Number'),
     
    339333    #    )
    340334
     335    collected = schema.Bool(
     336        title = _(u'Have you collected transcript before?'),
     337        default = False,
     338        required = False,
     339        )
     340
    341341    entry_session = schema.Choice(
    342342        title = _(u'Academic Session of Entry'),
     
    376376        )
    377377
    378     #change_level = schema.Choice(
    379     #    title = _(u'Change Level'),
    380     #    description = u'If yes, select level at which you changed course of study.',
    381     #    source = StudyLevelSource(),
    382     #    required = False,
    383     #    readonly = False,
    384     #    )
     378    spillover_level = schema.Choice(
     379        title = _(u'Spill-over'),
     380        description = u'Any spill-over? If yes, select session of spill-over.',
     381        source = academic_sessions_vocab,
     382        required = False,
     383        readonly = False,
     384        )
    385385
    386386    purpose = schema.TextLine(
Note: See TracChangeset for help on using the changeset viewer.