- Timestamp:
- 21 Mar 2023, 22:31:54 (20 months ago)
- Location:
- main/waeup.fceokene/trunk/src/waeup/fceokene/applicants
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/applicants/batching.py
r16923 r17359 36 36 """ 37 37 result = super(CustomApplicantProcessor, self).required_fields 38 result.remove('subj_comb')39 result.remove('school')40 38 return result 41 39 -
main/waeup.fceokene/trunk/src/waeup/fceokene/applicants/browser.py
r16931 r17359 188 188 form_fields['lga'].for_display = True 189 189 form_fields['matric_number'].for_display = True 190 form_fields['subj_comb'].field.required = True 191 form_fields['school_tpu'].field.required = True 190 192 return form_fields 191 193 if target == 'utp': … … 199 201 form_fields['lga'].for_display = True 200 202 form_fields['matric_number'].for_display = True 203 form_fields['subj_comb'].field.required = True 204 form_fields['school_utp'].field.required = True 201 205 return form_fields 202 206 form_fields = grok.AutoFields(ICustomUGApplicantEdit) -
main/waeup.fceokene/trunk/src/waeup/fceokene/applicants/interfaces.py
r16927 r17359 185 185 title = _(u'Subject Combination'), 186 186 source = TPUCertificateSource(), 187 required = True,187 required = False, 188 188 ) 189 189 … … 191 191 title = _(u'1st Choice TPZ and School'), 192 192 source = TPUSchoolSource(), 193 required = True,193 required = False, 194 194 ) 195 195 … … 270 270 title = _(u'Subject Combination'), 271 271 source = UTPCertificateSource(), 272 required = True,272 required = False, 273 273 ) 274 274 … … 276 276 title = _(u'1st Choice UTP and School'), 277 277 source = UTPSchoolSource(), 278 required = True,278 required = False, 279 279 ) 280 280
Note: See TracChangeset for help on using the changeset viewer.