from django.urls import path from . import views app_name = "references" urlpatterns = [ path("currencies/", views.CurrencyList.as_view(), name="currency_list"), path("currencies/create/", views.CurrencyCreate.as_view(), name="currency_create"), path("currencies//edit/", views.CurrencyUpdate.as_view(), name="currency_update"), path("currencies//delete/", views.CurrencyDelete.as_view(), name="currency_delete"), path("order-kinds/", views.OrderKindList.as_view(), name="orderkind_list"), path("order-kinds/create/", views.OrderKindCreate.as_view(), name="orderkind_create"), path("order-kinds//edit/", views.OrderKindUpdate.as_view(), name="orderkind_update"), path("order-kinds//delete/", views.OrderKindDelete.as_view(), name="orderkind_delete"), path("clients/", views.ClientList.as_view(), name="client_list"), path("clients/create/", views.ClientCreate.as_view(), name="client_create"), path("clients//edit/", views.ClientUpdate.as_view(), name="client_update"), path("clients//delete/", views.ClientDelete.as_view(), name="client_delete"), path("organizations/", views.OrganizationList.as_view(), name="organization_list"), path("organizations/create/", views.OrganizationCreate.as_view(), name="organization_create"), path("organizations//edit/", views.OrganizationUpdate.as_view(), name="organization_update"), path("organizations//delete/", views.OrganizationDelete.as_view(), name="organization_delete"), path("suppliers/", views.SupplierList.as_view(), name="supplier_list"), path("suppliers/create/", views.SupplierCreate.as_view(), name="supplier_create"), path("suppliers//edit/", views.SupplierUpdate.as_view(), name="supplier_update"), path("suppliers//delete/", views.SupplierDelete.as_view(), name="supplier_delete"), path("employees/", views.EmployeeList.as_view(), name="employee_list"), path("employees/create/", views.EmployeeCreate.as_view(), name="employee_create"), path("employees//edit/", views.EmployeeUpdate.as_view(), name="employee_update"), path("employees//delete/", views.EmployeeDelete.as_view(), name="employee_delete"), path("cash-accounts/", views.CashAccountList.as_view(), name="cashaccount_list"), path("cash-accounts/create/", views.CashAccountCreate.as_view(), name="cashaccount_create"), path("cash-accounts//edit/", views.CashAccountUpdate.as_view(), name="cashaccount_update"), path("cash-accounts//delete/", views.CashAccountDelete.as_view(), name="cashaccount_delete"), path("products/", views.ProductList.as_view(), name="product_list"), path("products/create/", views.ProductCreate.as_view(), name="product_create"), path("products//edit/", views.ProductUpdate.as_view(), name="product_update"), path("products//delete/", views.ProductDelete.as_view(), name="product_delete"), ]