From d60404594652dd8ad862bf8cc0dbc64fcbc3fb40 Mon Sep 17 00:00:00 2001 From: Dmitriy Shesterkin Date: Mon, 17 Jul 2017 13:33:19 +0300 Subject: [PATCH] fix form --- src/customer/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/customer/forms.py b/src/customer/forms.py index 049ebad..460bd82 100644 --- a/src/customer/forms.py +++ b/src/customer/forms.py @@ -530,5 +530,5 @@ class LicenseForm(forms.Form): term = forms.ModelChoiceField(queryset=models.LicensePrice.objects.all(), widget=forms.RadioSelect, label=u'Срок лицензии', empty_label=None) - payform = forms.ChoiceField(choices=consts.PAYFORMS[1:], widget=forms.RadioSelect, + payform = forms.ChoiceField(choices=consts.PAYFORMS[2:], widget=forms.RadioSelect, label=u'Форма оплаты')