- Timestamp:
- 5 Sep 2012, 10:40:42 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/applicants/interfaces.py
r9107 r9159 89 89 PG_OMIT_MANAGE_FIELDS = () 90 90 PG_OMIT_EDIT_FIELDS = PG_OMIT_MANAGE_FIELDS + PG_OMIT_DISPLAY_FIELDS + ( 91 'student_id', 'notice') 91 'student_id', 'notice', 92 'screening_score', 'screening_venue', 93 'screening_date',) 92 94 93 95 class INigeriaUGApplicant(IApplicantBaseData): … … 347 349 readonly = False, 348 350 ) 351 screening_venue = schema.TextLine( 352 title = _(u'Screening Venue'), 353 required = False, 354 ) 355 screening_date = schema.TextLine( 356 title = _(u'Screening Date'), 357 required = False, 358 ) 359 screening_score = schema.Int( 360 title = _(u'Screening Score (%)'), 361 required = False, 362 ) 349 363 student_id = schema.TextLine( 350 364 title = _(u'Student Id'),
Note: See TracChangeset for help on using the changeset viewer.