Changeset 16153
- Timestamp:
- 9 Jul 2020, 03:40:50 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/interfaces.py
r16152 r16153 275 275 ) 276 276 277 #reg_number = schema.TextLine(278 # title = _(u'Registration Number'),279 # readonly = False,280 # required = False,281 # )282 283 277 matric_number = schema.TextLine( 284 278 title = _(u'Matriculation Number'), … … 339 333 # ) 340 334 335 collected = schema.Bool( 336 title = _(u'Have you collected transcript before?'), 337 default = False, 338 required = False, 339 ) 340 341 341 entry_session = schema.Choice( 342 342 title = _(u'Academic Session of Entry'), … … 376 376 ) 377 377 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 ) 385 385 386 386 purpose = schema.TextLine(
Note: See TracChangeset for help on using the changeset viewer.