From da964851e8acf2cc8d78e28df0591db4f8994c14 Mon Sep 17 00:00:00 2001 From: gzbender Date: Tue, 8 Oct 2019 01:39:46 +0300 Subject: [PATCH] =?UTF-8?q?=D0=95=D1=81=D0=BB=D0=B8=20=D0=BF=D0=BE=D0=BB?= =?UTF-8?q?=D1=8C=D0=B7=D0=BE=D0=B2=D0=B0=D1=82=D0=B5=D0=BB=D1=8C=20=D0=B7?= =?UTF-8?q?=D0=B0=D0=BB=D0=BE=D0=B3=D0=B8=D0=BD=D0=B5=D0=BD=20=D0=BD=D0=B0?= =?UTF-8?q?=20=D0=BB=D0=B5=D0=BD=D0=B4=D0=B8=D0=BD=D0=B3=D0=B5,=20=D1=82?= =?UTF-8?q?=D0=BE=20=D0=BA=D0=B8=D0=B4=D0=B0=D1=82=D1=8C=20=D0=B5=D0=B3?= =?UTF-8?q?=D0=BE=20=D0=B4=D0=B0=D0=BB=D1=8C=D1=88=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/auth/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/auth/views.py b/apps/auth/views.py index 43f66bc0..1f4cf8ec 100644 --- a/apps/auth/views.py +++ b/apps/auth/views.py @@ -251,6 +251,7 @@ class LandingRegistrationView(View): form = LandingRegistrationForm(request.POST) if not form.is_valid(): return HttpResponse(form.errors.as_text()) + phone = form.cleaned_data['phone'] name = form.cleaned_data['name'].split() email = form.cleaned_data['email'].lower()