- Timestamp:
- 28 May 2012, 05:26:01 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/interfaces.py
r8532 r8536 40 40 PUTME_OMIT_EDIT_FIELDS = UG_OMIT_EDIT_FIELDS + ( 41 41 'firstname', 'middlename', 'lastname', 'sex', 42 'course1', 'lga', 'jamb score')42 'course1', 'lga', 'jamb_score', 'jamb_subjects') 43 43 44 44 PG_OMIT_DISPLAY_FIELDS = ('locked', 'course_admitted', 'password') … … 80 80 required = False, 81 81 ) 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 ) 91 90 notice = schema.Text( 92 91 title = _(u'Notice'),
Note: See TracChangeset for help on using the changeset viewer.