From c51114c5c95bfa87ebcabacf4a927f53eac6a3e7 Mon Sep 17 00:00:00 2001 From: RezenkovD Date: Thu, 17 Aug 2023 15:01:07 +0300 Subject: [PATCH] fix: change url name --- vr_club_site/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vr_club_site/urls.py b/vr_club_site/urls.py index 68f6510..835b239 100644 --- a/vr_club_site/urls.py +++ b/vr_club_site/urls.py @@ -14,7 +14,7 @@ urlpatterns = [ path("", index_page, name="home"), path("games/", games_page, name="games"), - path("deviсes/", devices_page, name="devices"), + path("devices/", devices_page, name="devices"), path( "api/get_available_slots/", get_available_slots_view,