From 0b278c2ff62d75ec09fa9c7927012af94d484f6d Mon Sep 17 00:00:00 2001 From: gzbender Date: Tue, 25 Sep 2018 21:11:27 +0500 Subject: [PATCH] =?UTF-8?q?LIL-620=20=D0=A3=D0=B2=D0=B5=D0=BB=D0=B8=D1=87?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BC=D0=B8=D0=BD=D0=B8=D0=BC=D0=B0?= =?UTF-8?q?=D0=BB=D1=8C=D0=BD=D0=BE=D0=B9=20=D1=81=D1=83=D0=BC=D0=BC=D1=8B?= =?UTF-8?q?=20=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=D0=B0=20=D0=B4=D0=B5=D0=BD?= =?UTF-8?q?=D0=B5=D0=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/user/forms.py | 2 +- apps/user/templates/user/payment-history.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 %}