From 143b1288919309c55d6a04256714d70fdfbb9700 Mon Sep 17 00:00:00 2001 From: tleb Date: Mon, 21 Oct 2019 22:56:24 +0200 Subject: [PATCH] club: fix 500 on club_new --- club/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/club/views.py b/club/views.py index a5b3aef8..1f26b76e 100644 --- a/club/views.py +++ b/club/views.py @@ -451,7 +451,7 @@ class ClubEditPropView(ClubTabsMixin, CanEditPropMixin, UpdateView): current_tab = "props" -class ClubCreateView(CanEditPropMixin, CreateView): +class ClubCreateView(CanCreateMixin, CreateView): """ Create a club (for the Sith admin) """