This repository has been archived on 2019-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
|
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'),
|
|
]
|