Changeset 15846 for main/kofacustom.nigeria/trunk
- Timestamp:
- 25 Nov 2019, 13:29:09 (5 years ago)
- Location:
- main/kofacustom.nigeria/trunk/src/kofacustom/nigeria
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/applicants/browser.py
r15844 r15846 65 65 @property 66 66 def target_url(self): 67 if not self.context.p_state in (' waived', 'scholarship') \67 if not self.context.p_state in ('paid', 'waived', 'scholarship') \ 68 68 and not self.context.r_company: 69 69 return '' … … 192 192 193 193 def update(self): 194 if not self.context.p_state in (' waived', 'scholarship') \194 if not self.context.p_state in ('paid', 'waived', 'scholarship') \ 195 195 and not self.context.r_company: 196 196 self.redirect(self.url(self.context)) -
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/students/browser.py
r15844 r15846 217 217 218 218 def update(self): 219 if not self.context.p_state in (' waived', 'scholarship') \219 if not self.context.p_state in ('paid', 'waived', 'scholarship') \ 220 220 and not self.context.r_company: 221 221 self.redirect(self.url(self.context)) -
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/students/viewlets.py
r15842 r15846 60 60 @property 61 61 def target_url(self): 62 if not self.context.p_state in (' waived', 'scholarship') \62 if not self.context.p_state in ('paid', 'waived', 'scholarship') \ 63 63 and not self.context.r_company: 64 64 return ''
Note: See TracChangeset for help on using the changeset viewer.