Changeset 13546 for main/waeup.aaue/trunk/src/waeup/aaue/applicants
- Timestamp:
- 16 Dec 2015, 08:59:26 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser.py
r13545 r13546 51 51 'hq_degree3', 'hq_school3', 'hq_session3', 'hq_disc3' 52 52 ) 53 UG_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + ('jamb_subjects_list',) + UG_OMIT_FIELDS 53 UG_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + ( 54 'jamb_subjects_list',) + UG_OMIT_FIELDS 54 55 UG_OMIT_PDF_FIELDS = UG_OMIT_DISPLAY_FIELDS + UG_OMIT_FIELDS + ( 55 56 'reg_number','alr_fname', 'alr_no', 'alr_date', 56 57 'alr_results', 'notice') 57 UG_OMIT_MANAGE_FIELDS = ('special_application','jamb_subjects_list',) + UG_OMIT_FIELDS 58 UG_OMIT_EDIT_FIELDS = UG_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + UG_OMIT_FIELDS + ( 58 UG_OMIT_MANAGE_FIELDS = ( 59 'special_application','jamb_subjects_list',) + UG_OMIT_FIELDS 60 UG_OMIT_EDIT_FIELDS = UG_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + ( 59 61 'student_id', 60 62 'notice', 61 'screening_score',62 'screening_venue',63 'screening_date',64 63 'jamb_age', 65 64 'jamb_subjects', … … 92 91 'scd_sit_type', 93 92 'scd_sit_results', 94 'programme_type' 93 'programme_type', 94 'jamb_age', 95 'jamb_subjects', 96 'jamb_score', 97 'jamb_reg_number', 98 'aggregate' 95 99 ) 96 100 PG_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + ( … … 101 105 PG_OMIT_MANAGE_FIELDS = ( 102 106 'special_application','jamb_subjects_list',) + PG_OMIT_FIELDS 103 PG_OMIT_EDIT_FIELDS = PG_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + PG_OMIT_FIELDS +(107 PG_OMIT_EDIT_FIELDS = PG_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + ( 104 108 'student_id', 105 109 'notice', 106 'screening_score', 107 'screening_venue', 108 'screening_date', 109 'jamb_age', 110 'jamb_subjects', 111 'jamb_score', 112 'jamb_reg_number', 113 'aggregate') 110 ) 114 111 115 112 class CustomApplicantDisplayFormPage(NigeriaApplicantDisplayFormPage):
Note: See TracChangeset for help on using the changeset viewer.