Changeset 13553 for main/kofacustom.nigeria/trunk/src
- Timestamp:
- 21 Dec 2015, 10:40:48 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/applicants/browser.py
r13551 r13553 106 106 for field in CBT_OMIT_DISPLAY_FIELDS: 107 107 form_fields = form_fields.omit(field) 108 elif self.target is not None and self.target.startswith('aff il'):108 elif self.target is not None and self.target.startswith('aff'): 109 109 form_fields = grok.AutoFields(INigeriaUGApplicant) 110 110 for field in AFFIL_OMIT_DISPLAY_FIELDS: … … 159 159 for field in CBT_OMIT_PDF_FIELDS: 160 160 form_fields = form_fields.omit(field) 161 elif self.target is not None and self.target.startswith('aff il'):161 elif self.target is not None and self.target.startswith('aff'): 162 162 form_fields = grok.AutoFields(INigeriaUGApplicant) 163 163 for field in AFFIL_OMIT_PDF_FIELDS: … … 211 211 for field in CBT_OMIT_MANAGE_FIELDS: 212 212 form_fields = form_fields.omit(field) 213 elif self.target is not None and self.target.startswith('aff il'):213 elif self.target is not None and self.target.startswith('aff'): 214 214 form_fields = grok.AutoFields(INigeriaUGApplicant) 215 215 for field in AFFIL_OMIT_MANAGE_FIELDS: … … 249 249 for field in CBT_OMIT_EDIT_FIELDS: 250 250 form_fields = form_fields.omit(field) 251 elif self.target is not None and self.target.startswith('aff il'):251 elif self.target is not None and self.target.startswith('aff'): 252 252 form_fields = grok.AutoFields(INigeriaUGApplicantEdit) 253 253 for field in AFFIL_OMIT_EDIT_FIELDS:
Note: See TracChangeset for help on using the changeset viewer.