From 64babb6918fe038e8a94353117fb869e4db41f02 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Wed, 12 May 2021 20:58:01 +0300 Subject: Django 3 fixes --- servo/forms/checkin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'servo/forms') diff --git a/servo/forms/checkin.py b/servo/forms/checkin.py index 8cd19c4..c8429a9 100644 --- a/servo/forms/checkin.py +++ b/servo/forms/checkin.py @@ -28,7 +28,7 @@ YEARS = [x + 1 for x in range(y - 10, y)] def get_checkin_locations(user): """Return possible checkin location choices for this user.""" from servo.models import User - if user.is_authenticated(): + if user.is_authenticated: return user.locations.enabled() else: user_id = Configuration.conf('checkin_user') @@ -196,7 +196,7 @@ class CustomerForm(forms.Form): self.fields['checkout_location'].queryset = locations self.fields['checkout_location'].initial = location - if request.user.is_authenticated(): + if request.user.is_authenticated: del(self.fields['agree_to_terms']) self.fields['phone'].widget = SearchFieldInput() -- cgit v1.2.3