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"), ]