From c11cc35ffc59cb06bcd96713ca0bcf420e0d1a38 Mon Sep 17 00:00:00 2001 From: Grizzly Date: Mon, 8 Jul 2019 09:59:35 +0000 Subject: [PATCH] Just a bit of front --- templates/base.html | 1 + tickets/urls.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/base.html b/templates/base.html index e58950ab..fa3b4706 100644 --- a/templates/base.html +++ b/templates/base.html @@ -100,6 +100,7 @@ with this program; if not, write to the Free Software Foundation, Inc., {% can_view_app cotisations %}
  • {% trans "Manage the subscriptions" %}
  • {% acl_end %} +
  • {% trans "Tickets" %}
  • {% acl_end %} diff --git a/tickets/urls.py b/tickets/urls.py index f7af41ce..34913bf6 100644 --- a/tickets/urls.py +++ b/tickets/urls.py @@ -3,7 +3,7 @@ from django.conf.urls import url from . import views urlpatterns = [ - url(r'^$', views.aff_tickets, name='index des tickets'), + url(r'^$', views.aff_tickets, name='aff-tickets'), url(r'^new_ticket/(?P[0-9]+)$', views.new_ticket, name='new-ticket'),