Ignore:
Timestamp:
5 Apr 2017, 11:48:29 (7 years ago)
Author:
Henrik Bettermann
Message:

Remove result_uploaded field.

course_studied must not be required.

File:
1 edited

Legend:

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

    r14486 r14666  
    422422        required = False,
    423423        )
     424
    424425    screening_date = schema.TextLine(
    425426        title = _(u'Screening Date'),
    426427        required = False,
    427428        )
     429
    428430    screening_score = schema.Int(
    429431        title = _(u'Screening Points'),
    430432        required = False,
    431433        )
    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
    441435    student_id = schema.TextLine(
    442436        title = _(u'Student Id'),
     
    444438        readonly = False,
    445439        )
     440
    446441    course_admitted = schema.Choice(
    447442        title = _(u'Admitted Course of Study'),
     
    449444        required = False,
    450445        )
     446
    451447    locked = schema.Bool(
    452448        title = _(u'Form locked'),
     
    588584        title = _(u'Course of Study / Degree'),
    589585        source = CertificateSource(),
    590         required = True,
     586        required = False,
    591587        readonly = False,
    592588        )
Note: See TracChangeset for help on using the changeset viewer.