create 'new issue' form

This commit is contained in:
Lexi / Zoe 2019-06-03 00:14:40 +02:00
parent 0013410ac1
commit 23f3d2a96f
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
7 changed files with 46 additions and 3 deletions

View file

@ -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'),
]