user.is_authenticated is no longer a method

Apparently this is now a property, so we don't need to call it. We can
just use it.
This commit is contained in:
Sebastian Lohff 2022-01-22 17:16:43 +01:00
parent 0ca4c2399f
commit 8308a883cd
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ from .forms import UpdateRefForm, QSOForm, QSOFormWithTime, CustomUserCreationFo
def index(request): def index(request):
if request.user.is_authenticated(): if request.user.is_authenticated:
return HttpResponseRedirect(reverse("contest:index")) return HttpResponseRedirect(reverse("contest:index"))
return render(request, "index.html", {"loginForm": AuthenticationForm()}) return render(request, "index.html", {"loginForm": AuthenticationForm()})