X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/b439ad7f35e01bc02e281044fd8a58c24d92900d..5bd864493e531e5600c5ca989825d89cc3ee1487:/src/paypal/forms.py diff --git a/src/paypal/forms.py b/src/paypal/forms.py index 84098d8c7..cadea3f3f 100644 --- a/src/paypal/forms.py +++ b/src/paypal/forms.py @@ -1,10 +1,9 @@ -# -*- coding: utf-8 -*- # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # from django import forms -from django.utils.translation import ugettext_lazy as _ +from django.utils.translation import gettext_lazy as _ class PaypalSubscriptionForm(forms.Form): - amount = forms.IntegerField(min_value=10, max_value=30000, initial=20, label=_('amount in PLN')) + amount = forms.IntegerField(min_value=5, max_value=30000, initial=20, label=_('amount in PLN'))