From 5579f1a4dfdcda0e926ba93f059305a8790fbf5a Mon Sep 17 00:00:00 2001 From: gw3000 Date: Thu, 20 Jul 2023 11:40:50 +0200 Subject: [PATCH] individual costs url --- app/costs/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/costs/urls.py b/app/costs/urls.py index 9fb11a5..273220d 100644 --- a/app/costs/urls.py +++ b/app/costs/urls.py @@ -10,6 +10,7 @@ from .views import ( urlpatterns = [ path("all/", costs_all, name="costs_all"), path("create/", costs_create, name="costs_create"), + path("create/", costs_create, name="costs_create"), path("edit/", costs_edit, name="costs_edit"), path("delete/", costs_delete, name="costs_delete"), ]