From 9b39529fd2e04c7b304ebb9644ba0be5801352b3 Mon Sep 17 00:00:00 2001 From: Laouen Fernet Date: Sat, 30 May 2020 11:33:25 +0200 Subject: [PATCH] Fix some translations in tickets/ --- tickets/views.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tickets/views.py b/tickets/views.py index 3d3a8bfa..c1796f8d 100644 --- a/tickets/views.py +++ b/tickets/views.py @@ -20,10 +20,6 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -# App de gestion des users pour re2o -# Lara Kermarec, Gabriel Détraz, Lemesle Augustin -# Gplv2 - from django.contrib import messages from django.contrib.auth.decorators import login_required from django.shortcuts import render, redirect @@ -196,7 +192,7 @@ def aff_tickets(request): return render(request, "tickets/index.html", context=context) -# views cannoniques des apps optionnels +# Canonic views for optional apps def profil(request, user): """View used to display the tickets on a user's profile.""" tickets_list = Ticket.objects.filter(user=user).all().order_by("-date")