added costs
This commit is contained in:
parent
83beefd23d
commit
8288902cc0
18 changed files with 378 additions and 10 deletions
15
app/costs/urls.py
Normal file
15
app/costs/urls.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
from django.urls import path
|
||||
|
||||
from .views import (
|
||||
costs_all,
|
||||
costs_create,
|
||||
costs_edit,
|
||||
costs_delete,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
path("all/", costs_all, name="costs_all"),
|
||||
path("create/", costs_create, name="costs_create"),
|
||||
path("edit/<id>", costs_edit, name="costs_edit"),
|
||||
path("delete/<id>", costs_delete, name="costs_delete"),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue