Ignore:
Timestamp:
28 May 2012, 05:26:01 (12 years ago)
Author:
Henrik Bettermann
Message:

See r8535.

File:
1 edited

Legend:

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

    r8532 r8536  
    4040PUTME_OMIT_EDIT_FIELDS = UG_OMIT_EDIT_FIELDS + (
    4141    'firstname', 'middlename', 'lastname', 'sex',
    42     'course1', 'lga', 'jambscore')
     42    'course1', 'lga', 'jamb_score', 'jamb_subjects')
    4343
    4444PG_OMIT_DISPLAY_FIELDS = ('locked', 'course_admitted', 'password')
     
    8080        required = False,
    8181        )
    82     jambscore = schema.Int(
    83         title = _(u'JAMB Score'),
    84         required = False,
    85         )
    86 
    87 
    88 # More fields
    89 
    90 
     82    jamb_subjects = schema.Text(
     83        title = _(u'Subjects and Scores'),
     84        required = False,
     85        )
     86    jamb_score = schema.Int(
     87        title = _(u'Total Score'),
     88        required = False,
     89        )
    9190    notice = schema.Text(
    9291        title = _(u'Notice'),
Note: See TracChangeset for help on using the changeset viewer.