From 7dc2632f478da93a9658f123a85aec600b3f645e Mon Sep 17 00:00:00 2001 From: Dmitry Novikov Date: Tue, 29 Oct 2019 13:43:10 +0300 Subject: [PATCH] fix --- clientsideapp/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clientsideapp/views.py b/clientsideapp/views.py index a7b6f87..e5e93ad 100644 --- a/clientsideapp/views.py +++ b/clientsideapp/views.py @@ -38,7 +38,7 @@ def services(request): abon = request.user all_tarifs = Tariff.objects.get_tariffs_by_group( abon.group.pk - )# .filter(is_admin=False) + ).filter(is_admin=False) current_service = abon.active_tariff() except Abon.DoesNotExist: all_tarifs = None