mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-31 14:33:39 +02:00
19 lines
441 B
Python
19 lines
441 B
Python
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",
|
|
),
|
|
]
|