Browse Source

Just a bit of front

tickets
Grizzly 7 years ago
committed by Gabriel Detraz
parent
commit
c11cc35ffc
  1. 1
      templates/base.html
  2. 2
      tickets/urls.py

1
templates/base.html

@ -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 %}

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

Loading…
Cancel
Save