Changeset 14090 for main/waeup.uniben/trunk/src/waeup/uniben/applicants
- Timestamp:
- 18 Aug 2016, 11:26:38 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/browser.py
r14064 r14090 122 122 123 123 @property 124 def depcode(self): 125 try: 126 code = self.context.course1.__parent__.__parent__.code 127 return code 128 except: 129 return 130 131 @property 124 132 def show_pastq_al(self): 125 return self._show_pastq_putme() \ 126 and self.context.course1.__parent__.__parent__.code in PASTQ_AL 133 return self._show_pastq_putme() and self.depcode in PASTQ_AL 127 134 128 135 @property 129 136 def show_pastq_bs(self): 130 return self._show_pastq_putme() \ 131 and self.context.course1.__parent__.__parent__.code in PASTQ_BS 137 return self._show_pastq_putme() and self.depcode in PASTQ_BS 132 138 133 139 @property 134 140 def show_pastq_eps(self): 135 return self._show_pastq_putme() \ 136 and self.context.course1.__parent__.__parent__.code in PASTQ_EPS 141 return self._show_pastq_putme() and self.depcode in PASTQ_EPS 137 142 138 143 @property 139 144 def show_pastq_mss(self): 140 return self._show_pastq_putme() \ 141 and self.context.course1.__parent__.__parent__.code in PASTQ_MSS 145 return self._show_pastq_putme() and self.depcode in PASTQ_MSS 142 146 143 147 @property
Note: See TracChangeset for help on using the changeset viewer.