From 3333a5334e580658b93699dd0df035fe72daf52e Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 12 Aug 2022 07:51:28 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20pk=20for=20client=20edit=20view=20?= =?UTF-8?q?=E2=80=93=20int=20doesn't=20work=20if=20it=20starts=20with=200?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/urls.py b/frontend/urls.py index 3fa108a..f0edf82 100644 --- a/frontend/urls.py +++ b/frontend/urls.py @@ -22,6 +22,6 @@ urlpatterns = [ path("authorizations/data/", AuthorizationLogDataView.as_view(), name="authorization_log_data"), path("apps/", ClientView.as_view(), name="client_list"), path("apps/data/", ClientDataView.as_view(), name="client_list_data"), - path("apps//edit/", ClientEditView.as_view(), name="client_edit"), + path("apps//edit/", ClientEditView.as_view(), name="client_edit"), path("apps/new/", ClientCreateView.as_view(), name="client_create"), ] \ No newline at end of file