- Timestamp:
- 10 Jun 2011, 06:58:09 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/interfaces.py
r6313 r6322 347 347 max_size = 20480, 348 348 ) 349 confirm_passport = schema.Bool( 350 title = u"Passport picture confirmed", 351 default = False, 352 required = True, 353 ) 349 354 350 # 355 351 # Process Data … … 408 404 omit fields. This has to be done in the respective form page. 409 405 """ 410 application_state = Attribute("The workflow state of an applicant object.")411 412 406 screening_score = schema.Int( 413 407 title = u'Screening Score', … … 427 421 readonly = True, 428 422 ) 429 entry_session = schema. TextLine(430 # XXX: should be choice423 entry_session = schema.Choice( 424 source = entry_session_vocab, 431 425 title = u'Entry Session', 432 426 required = False, 433 readonly = True ,427 readonly = True 434 428 ) 435 429 notice = schema.Text( … … 437 431 required = False, 438 432 readonly = True, 439 )440 confirm_passport = schema.Bool(441 title = u"I confirm that the Passport Photograph uploaded on this form is a true picture of me.",442 default = False,443 required = True,444 433 ) 445 434
Note: See TracChangeset for help on using the changeset viewer.