Changeset 14567 for main


Ignore:
Timestamp:
21 Feb 2017, 13:26:06 (8 years ago)
Author:
Henrik Bettermann
Message:

Allow applicants in states admitted, not admitted or created to download the payment slip.

File:
1 edited

Legend:

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

    r14394 r14567  
    832832    @property
    833833    def payment_slip_download_warning(self):
    834         if self.context.__parent__.state != SUBMITTED:
     834        if self.context.__parent__.state not in (
     835            SUBMITTED, ADMITTED, NOT_ADMITTED, CREATED):
    835836            return _('Please submit the application form before '
    836837                     'trying to download payment slips.')
Note: See TracChangeset for help on using the changeset viewer.