Changeset 15122 for main


Ignore:
Timestamp:
5 Sep 2018, 09:37:43 (6 years ago)
Author:
Henrik Bettermann
Message:

Always display applicant payments if they exist.

Location:
main/waeup.kofa/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/CHANGES.txt

    r15085 r15122  
    441.6.1.dev0 (unreleased)
    55=======================
     6
     7* Always display applicant payments if they exist.
    68
    79* Allow `ApplicationsManager` to view statistics.
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py

    r15092 r15122  
    585585    @property
    586586    def display_payments(self):
     587        if self.context.payments:
     588            return True
    587589        if self.context.special:
    588590            return True
     
    940942    @property
    941943    def display_payments(self):
     944        if self.context.payments:
     945            return True
    942946        if self.context.special:
    943947            return True
Note: See TracChangeset for help on using the changeset viewer.