This repository has been archived on 2019-11-11. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
tofu/issues/urls.py

11 lines
256 B
Python
Raw Normal View History

from django.urls import path
from . import views
app_name = 'issues'
urlpatterns = [
2019-06-03 17:57:25 +02:00
path('', views.IndexView.as_view(), name='index'),
2019-06-03 00:14:40 +02:00
path('new', views.new, name='new'),
2019-06-03 17:57:25 +02:00
path('<int:issue_id>/', views.DetailView.as_view(), name='detail'),
]