diff options
Diffstat (limited to 'client/urls.py')
-rw-r--r-- | client/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/urls.py b/client/urls.py index 4da5169..d76aa96 100644 --- a/client/urls.py +++ b/client/urls.py @@ -4,7 +4,7 @@ from . import views urlpatterns = [ path('', views.index, name='index'), - path('create', views.create, name='create'), + path('create/<int:code>', views.create, name='create'), path('edit', views.edit, name='edit'), path('about', views.about, name='about'), ] |