Changeset 11726


Ignore:
Timestamp:
3 Jul 2014, 05:22:16 (10 years ago)
Author:
Henrik Bettermann
Message:

Option for additional passport upload requirements added.

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

Legend:

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

    r11722 r11726  
    441.3dev (unreleased)
    55===================
     6
     7* Option for additional passport upload requirements added.
    68
    79* Remove unused rowadd javascript function.
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py

    r11657 r11726  
    629629    factory = u'waeup.ApplicantOnlinePayment'
    630630
     631    @property
     632    def custom_requirements(self):
     633        return ''
     634
    631635    def update(self):
     636        # Additional requirements in custom packages.
     637        if self.custom_requirements:
     638            self.flash(
     639                self.custom_requirements,
     640                type='danger')
     641            self.redirect(self.url(self.context))
    632642        if not self.context.special:
    633643            for key in self.context.keys():
Note: See TracChangeset for help on using the changeset viewer.