- Timestamp:
- 26 Jun 2012, 07:46:53 (12 years ago)
- Location:
- main/waeup.fceokene/trunk/src/waeup/fceokene
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene
- Property svn:mergeinfo changed
/main/waeup.uniben/trunk/src/waeup/uniben merged: 8803-8804
- Property svn:mergeinfo changed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/applicants/interfaces.py
r8745 r8807 34 34 from waeup.fceokene.payments.interfaces import ICustomOnlinePayment 35 35 36 UG_OMIT_DISPLAY_FIELDS = ('locked', 'course_admitted', 'password') 36 UG_OMIT_DISPLAY_FIELDS = ('locked', 'course_admitted', 37 'password', 'result_uploaded') 37 38 UG_OMIT_PDF_FIELDS = UG_OMIT_DISPLAY_FIELDS + ('email', 'phone') 38 39 UG_OMIT_MANAGE_FIELDS = () 39 40 UG_OMIT_EDIT_FIELDS = UG_OMIT_MANAGE_FIELDS + ('locked', 'course_admitted', 40 41 'student_id', 'screening_score', 'screening_venue', 'notice', 41 'screening_date' )42 'screening_date', 'result_uploaded') 42 43 PUTME_OMIT_EDIT_FIELDS = UG_OMIT_EDIT_FIELDS + ( 43 44 'firstname', 'middlename', 'lastname', 'sex', 44 45 'course1', 'lga', 'jamb_score', 'jamb_subjects') 46 UG_OMIT_RESULT_SLIP_FIELDS = UG_OMIT_DISPLAY_FIELDS + ('email', 'phone', 47 'date_of_birth', 'sex', 48 'nationality', 'lga', 'perm_address', 'course2', 'screening_venue', 49 'screening_date') 45 50 46 51 PG_OMIT_DISPLAY_FIELDS = ('locked', 'course_admitted', 'password') … … 105 110 ) 106 111 screening_score = schema.Int( 107 title = _(u'Screening Score'), 108 required = False, 112 title = _(u'Screening Score (%)'), 113 required = False, 114 ) 115 aggregate = schema.Int( 116 title = _(u'Aggregate Score (%)'), 117 description = _(u'(average of relative JAMB and PUTME scores)'), 118 required = False, 119 ) 120 result_uploaded = schema.Bool( 121 title = _(u'Result uploaded'), 122 default = False, 109 123 ) 110 124 student_id = schema.TextLine(
Note: See TracChangeset for help on using the changeset viewer.