8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-07-04 05:04:06 +00:00
re2o/tickets/urls.py

10 lines
288 B
Python
Raw Normal View History

2019-07-07 17:09:56 +00:00
from django.conf.urls import url
from . import views
urlpatterns = [
2019-07-08 09:59:35 +00:00
url(r'^$', views.aff_tickets, name='aff-tickets'),
2019-07-08 10:21:51 +00:00
url(r'^ticket/(?P<ticketid>[0-9]+)$', views.aff_ticket, name='aff-ticket'),
url(r'^new_ticket/(?P<userid>[0-9]+)$',views.new_ticket,name='new-ticket'),
2019-07-07 17:09:56 +00:00
]