mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-07-14 08:42:45 +02:00
changes
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path("currencies/", views.currency_list, name="currencies_list"),
|
||||
path("currencies/add/", views.currency_add, name="currency_add"),
|
||||
path(
|
||||
"currencies/<int:pk>/edit/",
|
||||
views.currency_edit,
|
||||
name="currency_edit",
|
||||
),
|
||||
path(
|
||||
"currencies/<int:pk>/delete/",
|
||||
views.currency_delete,
|
||||
name="currency_delete",
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user