Changeset 13797


Ignore:
Timestamp:
4 Apr 2016, 09:05:31 (8 years ago)
Author:
Henrik Bettermann
Message:

Change flash message.

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

Legend:

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

    r13773 r13797  
    11461146        self.browser.getControl(name="form.p_category").value = ['schoolfee']
    11471147        self.browser.getControl("Create ticket").click()
    1148         self.assertMatches('...Payment temporarily disabled...',
     1148        self.assertMatches('...This category of payments has been disabled...',
    11491149                           self.browser.contents)
    11501150        return
  • main/waeup.kofa/trunk/src/waeup/kofa/students/utils.py

    r13665 r13797  
    478478            return _('This type of payment has already been made.'), None
    479479        if self._isPaymentDisabled(p_session, category, student):
    480             return _('Payment temporarily disabled.'), None
     480            return _('This category of payments has been disabled.'), None
    481481        payment = createObject(u'waeup.StudentOnlinePayment')
    482482        timestamp = ("%d" % int(time()*10000))[1:]
Note: See TracChangeset for help on using the changeset viewer.