8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-19 17:12:32 +00:00

Just a bit of front

This commit is contained in:
Grizzly 2019-07-08 09:59:35 +00:00 committed by Gabriel Detraz
parent f054c0a2af
commit c11cc35ffc
2 changed files with 2 additions and 1 deletions

View file

@ -100,6 +100,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% can_view_app cotisations %}
<li><a href="{% url 'cotisations:index' %}"><i class="fa fa-eur"></i> {% trans "Manage the subscriptions" %}</a></li>
{% acl_end %}
<li><a href="{% url 'tickets:aff-tickets' %}"><i class="fa fa-ticket"></i> {% trans "Tickets" %}</a></li>
</ul>
</li>
{% acl_end %}

View file

@ -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<userid>[0-9]+)$',
views.new_ticket,
name='new-ticket'),