Ignore:
Timestamp:
7 May 2013, 17:24:04 (12 years ago)
Author:
Henrik Bettermann
Message:

Also in AAUA we have 'special postgrad' students. These are postgrad students with regular ug workflow.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py

    r10080 r10155  
    573573        allowed_transitions = [t for t in wf_info.getManualTransitions()
    574574            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:
    576576            allowed_transitions = [t for t in allowed_transitions
    577577                if not t[0] in FORBIDDEN_POSTGRAD_TRANS]
     
    24482448
    24492449    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:
    24512452            self.flash(_(
    24522453                "You are a postgraduate student, "
Note: See TracChangeset for help on using the changeset viewer.