- Timestamp:
- 7 May 2013, 17:24:04 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py
r10080 r10155 573 573 allowed_transitions = [t for t in wf_info.getManualTransitions() 574 574 if not t[0].startswith('pay')] 575 if self.context.is_postgrad :575 if self.context.is_postgrad and not self.context.is_special_postgrad: 576 576 allowed_transitions = [t for t in allowed_transitions 577 577 if not t[0] in FORBIDDEN_POSTGRAD_TRANS] … … 2448 2448 2449 2449 def _registerCourses(self, **data): 2450 if self.context.student.is_postgrad: 2450 if self.context.student.is_postgrad and \ 2451 not self.context.student.is_special_postgrad: 2451 2452 self.flash(_( 2452 2453 "You are a postgraduate student, "
Note: See TracChangeset for help on using the changeset viewer.