- Timestamp:
- 12 May 2012, 16:27:14 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r8428 r8434 730 730 transition. 731 731 """ 732 allowed_transitions = self.wf_info.getManualTransitions() 732 allowed_transitions = [t for t in self.wf_info.getManualTransitions() 733 if not t[0] == 'pay'] 733 734 return [dict(name='', title=_('No transition'))] +[ 734 735 dict(name=x, title=y) for x, y in allowed_transitions]
Note: See TracChangeset for help on using the changeset viewer.