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

9 lines
188 B
Python

from django.urls import path
from . import views
app_name = 'issues'
urlpatterns = [
path('', views.index, name='index'),
path('<int:issue_id>/', views.detail, name='detail'),
]