From 58c120410a5f0c89f57d9c4c9455fa49a3d85834 Mon Sep 17 00:00:00 2001 From: Gabriel Detraz Date: Thu, 10 Oct 2019 15:43:52 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20:=20affichage=20des=20tickets,=20=C3=A9vi?= =?UTF-8?q?te=20un=20crash?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tickets/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tickets/views.py b/tickets/views.py index b16e4eea..e59c69a0 100644 --- a/tickets/views.py +++ b/tickets/views.py @@ -186,7 +186,7 @@ def preferences(request): def contact(request): """View to display a contact address on the contact page used here to display a link to open a ticket""" - return ('users', render_to_string('tickets/contact.html')) + return render_to_string('tickets/contact.html') def navbar_user(): """View to display the ticket link in thet user's dropdown in the navbar"""