Changeset 14666 for main/waeup.aaue/trunk/src/waeup/aaue
- Timestamp:
- 5 Apr 2017, 11:48:29 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/interfaces.py
r14486 r14666 422 422 required = False, 423 423 ) 424 424 425 screening_date = schema.TextLine( 425 426 title = _(u'Screening Date'), 426 427 required = False, 427 428 ) 429 428 430 screening_score = schema.Int( 429 431 title = _(u'Screening Points'), 430 432 required = False, 431 433 ) 432 #aggregate = schema.Int( 433 # title = _(u'Aggregate Score (%)'), 434 # description = _(u'(average of relative JAMB and PUTME scores)'), 435 # required = False, 436 # ) 437 result_uploaded = schema.Bool( 438 title = _(u'Result uploaded'), 439 default = False, 440 ) 434 441 435 student_id = schema.TextLine( 442 436 title = _(u'Student Id'), … … 444 438 readonly = False, 445 439 ) 440 446 441 course_admitted = schema.Choice( 447 442 title = _(u'Admitted Course of Study'), … … 449 444 required = False, 450 445 ) 446 451 447 locked = schema.Bool( 452 448 title = _(u'Form locked'), … … 588 584 title = _(u'Course of Study / Degree'), 589 585 source = CertificateSource(), 590 required = True,586 required = False, 591 587 readonly = False, 592 588 )
Note: See TracChangeset for help on using the changeset viewer.