Changeset 15169
- Timestamp:
- 24 Sep 2018, 06:47:52 (6 years ago)
- Location:
- main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/applicants/browser.py
r15131 r15169 62 62 # UG students are all undergraduate students. 63 63 UG_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + ( 64 'jamb_subjects _list', 'programme_type')64 'jamb_subjects', 'programme_type') 65 65 UG_OMIT_PDF_FIELDS = UG_OMIT_DISPLAY_FIELDS + ('phone',) 66 66 UG_OMIT_MANAGE_FIELDS = ( 67 67 'special_application', 68 'jamb_subjects _list',68 'jamb_subjects', 69 69 'programme_type') 70 UG_OMIT_EDIT_FIELDS = UG_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + (70 UG_OMIT_EDIT_FIELDS = UG_OMIT_MANAGE_FIELDS + UG_OMIT_DISPLAY_FIELDS + ( 71 71 'student_id', 72 72 'notice', … … 92 92 form_fields = form_fields.omit(field) 93 93 form_fields['notice'].custom_widget = BytesDisplayWidget 94 form_fields['jamb_subjects'].custom_widget = BytesDisplayWidget94 #form_fields['jamb_subjects'].custom_widget = BytesDisplayWidget 95 95 if not getattr(self.context, 'student_id'): 96 96 form_fields = form_fields.omit('student_id') -
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/applicants/interfaces.py
r15087 r15169 40 40 from kofacustom.edopoly.payments.interfaces import ICustomOnlinePayment 41 41 42 class ICustomUGApplicant(I NigeriaUGApplicant):42 class ICustomUGApplicant(IApplicantBaseData): 43 43 """An undergraduate applicant. 44 44
Note: See TracChangeset for help on using the changeset viewer.