create 'new issue' form
This commit is contained in:
parent
0013410ac1
commit
23f3d2a96f
7 changed files with 46 additions and 3 deletions
|
|
@ -5,5 +5,6 @@ from . import views
|
|||
app_name = 'issues'
|
||||
urlpatterns = [
|
||||
path('', views.index, name='index'),
|
||||
path('new', views.new, name='new'),
|
||||
path('<int:issue_id>/', views.detail, name='detail'),
|
||||
]
|
||||
|
|
|
|||
Reference in a new issue