Changeset 10590 for main/waeup.kwarapoly/trunk/src/waeup
- Timestamp:
- 5 Sep 2013, 21:23:45 (11 years ago)
- Location:
- main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/applicants/browser.py
r10134 r10590 43 43 ) 44 44 45 UG_OMIT_EDIT_FIELDS = [ 46 value for value in UG_OMIT_EDIT_FIELDS 47 if not value in ('jamb_subjects', 'jamb_score')] 48 45 49 class CustomApplicantsContainerPage(ApplicantsContainerPage): 46 50 """The standard view for regular applicant containers. … … 69 73 form_fields = form_fields.omit(field) 70 74 form_fields['notice'].custom_widget = BytesDisplayWidget 75 form_fields['jamb_subjects'].custom_widget = BytesDisplayWidget 71 76 if not getattr(self.context, 'student_id'): 72 77 form_fields = form_fields.omit('student_id') -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/applicants/interfaces.py
r10167 r10590 163 163 jamb_subjects = schema.Text( 164 164 title = _(u'Subjects and Scores'), 165 description = _(u'(one subject with score per line)'), 165 166 required = False, 166 167 )
Note: See TracChangeset for help on using the changeset viewer.