diff options
author | Andrea Lepori <aleporia@gmail.com> | 2023-07-25 13:47:43 +0200 |
---|---|---|
committer | Andrea Lepori <aleporia@gmail.com> | 2023-07-25 13:47:44 +0200 |
commit | 05463489f459761e93b8921b5627626ee3adf420 (patch) | |
tree | 97349a3eaa45e260b82b26685966559f6413a0a0 /client/urls.py | |
parent | change branca and color to show (diff) | |
download | scout-subs-05463489f459761e93b8921b5627626ee3adf420.tar.gz scout-subs-05463489f459761e93b8921b5627626ee3adf420.zip |
create docs from uc
Diffstat (limited to '')
-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'), ] |