aboutsummaryrefslogtreecommitdiffstats
path: root/client/urls.py
diff options
context:
space:
mode:
authorAndrea Lepori <aleporia@gmail.com>2023-07-25 13:47:43 +0200
committerAndrea Lepori <aleporia@gmail.com>2023-07-25 13:47:44 +0200
commit05463489f459761e93b8921b5627626ee3adf420 (patch)
tree97349a3eaa45e260b82b26685966559f6413a0a0 /client/urls.py
parentchange branca and color to show (diff)
downloadscout-subs-05463489f459761e93b8921b5627626ee3adf420.tar.gz
scout-subs-05463489f459761e93b8921b5627626ee3adf420.zip
create docs from uc
Diffstat (limited to 'client/urls.py')
-rw-r--r--client/urls.py2
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'),
]