From 406ac9ea986d3227e873c967ae1646d9cd0f8965 Mon Sep 17 00:00:00 2001 From: gzbender Date: Fri, 6 Sep 2019 14:29:00 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=B2=D0=B5=D1=80=D1=81=D1=82=D0=B0?= =?UTF-8?q?=D1=82=D1=8C=20=D0=B2=D0=B8=D0=B4=D0=B6=D0=B5=D1=82=20Paymentwa?= =?UTF-8?q?ll=20=D0=B4=D0=BB=D1=8F=20=D0=BC=D0=BE=D0=B1=D0=B8=D0=BB=D1=8C?= =?UTF-8?q?=D0=BD=D1=8B=D1=85=20=D1=83=D1=81=D1=82=D1=80=D0=BE=D0=B9=D1=81?= =?UTF-8?q?=D1=82=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/payment/views.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/payment/views.py b/apps/payment/views.py index eb38abad..d9a4edc3 100644 --- a/apps/payment/views.py +++ b/apps/payment/views.py @@ -117,7 +117,7 @@ class CourseBuyView(TemplateView): attrs = {} if request.user_agent.is_mobile: attrs['width'] = '100%' - attrs['height'] = '500' + attrs['height'] = '600' return self.render_to_response(context={'widget': widget.get_html_code(attrs)}) @@ -190,7 +190,7 @@ class SchoolBuyView(TemplateView): attrs = {'height': '400'} if request.user_agent.is_mobile: attrs['width'] = '100%' - attrs['height'] = '500' + attrs['height'] = '600' return self.render_to_response(context={ 'widget': widget.get_html_code(attrs), 'school': True, @@ -265,7 +265,7 @@ class DrawingCampBuyView(TemplateView): attrs = {} if request.user_agent.is_mobile: attrs['width'] = '100%' - attrs['height'] = '500' + attrs['height'] = '600' return self.render_to_response(context={'widget': widget.get_html_code(attrs)}) @@ -456,7 +456,7 @@ class GiftCertificateBuyView(TemplateView): attrs = {} if request.user_agent.is_mobile: attrs['width'] = '100%' - attrs['height'] = '500' + attrs['height'] = '600' context['widget'] = widget.get_html_code(attrs) return self.render_to_response(context)