implement issues index and detail view, using templates
This commit is contained in:
parent
43c127d744
commit
a14ab33927
4 changed files with 34 additions and 4 deletions
|
|
@ -2,6 +2,8 @@ from django.urls import path
|
|||
|
||||
from . import views
|
||||
|
||||
app_name = 'issues'
|
||||
urlpatterns = [
|
||||
path('', views.index, name='index')
|
||||
path('', views.index, name='index'),
|
||||
path('<int:issue_id>/', views.detail, name='detail'),
|
||||
]
|
||||
|
|
|
|||
Reference in a new issue