mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-21 00:49:29 +01:00
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
# urls.py
|
|
from django.urls import path
|
|
from apps.accounts import views
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"account-reconciliation/",
|
|
views.account_reconciliation,
|
|
name="account_reconciliation",
|
|
),
|
|
path("accounts/", views.accounts_index, name="accounts_index"),
|
|
path("accounts/list/", views.accounts_list, name="accounts_list"),
|
|
path("account/add/", views.account_add, name="account_add"),
|
|
path(
|
|
"account/<int:pk>/edit/",
|
|
views.account_edit,
|
|
name="account_edit",
|
|
),
|
|
path(
|
|
"account/<int:pk>/delete/",
|
|
views.account_delete,
|
|
name="account_delete",
|
|
),
|
|
path("account-groups/", views.account_groups_index, name="account_groups_index"),
|
|
path("account-groups/list/", views.account_groups_list, name="account_groups_list"),
|
|
path("account-groups/add/", views.account_group_add, name="account_group_add"),
|
|
path(
|
|
"account-groups/<int:pk>/edit/",
|
|
views.account_group_edit,
|
|
name="account_group_edit",
|
|
),
|
|
path(
|
|
"account-groups/<int:pk>/delete/",
|
|
views.account_group_delete,
|
|
name="account_group_delete",
|
|
),
|
|
]
|