diff --git a/apps/user/forms.py b/apps/user/forms.py index d20ee0ea..a38debe6 100644 --- a/apps/user/forms.py +++ b/apps/user/forms.py @@ -57,7 +57,7 @@ class UserEditForm(forms.ModelForm): class WithdrawalForm(forms.Form): - amount = forms.DecimalField(required=True, min_value=2000) + amount = forms.DecimalField(required=True, min_value=10000) card = CreditCardField(required=True) diff --git a/apps/user/templates/user/payment-history.html b/apps/user/templates/user/payment-history.html index c27a3faa..dff8619c 100644 --- a/apps/user/templates/user/payment-history.html +++ b/apps/user/templates/user/payment-history.html @@ -41,9 +41,9 @@
СУММА
- +
-
Размер выводимой суммы не должно быть менее 2000 рублей.
+
Размер выводимой суммы не должен быть менее 10 000 рублей.
{% if form.amount.errors %}
{{ form.amount.errors }}
{% endif %}