diff --git a/accounting/urls.py b/accounting/urls.py index c96049e..8c5151b 100644 --- a/accounting/urls.py +++ b/accounting/urls.py @@ -85,24 +85,33 @@ urlpatterns = [ views.txn_edit, name="transactions.edit"), path("transactions///update", views.txn_store, name="transactions.update"), + # TODO: To be done path("transactions//delete", mia_core_views.todo, name="transactions.delete"), + # TODO: To be done path("transactions/sort/", mia_core_views.todo, name="transactions.sort"), + # TODO: To be done path("accounts", mia_core_views.todo, name="accounts"), + # TODO: To be done path("accounts/create", mia_core_views.todo, name="accounts.create"), + # TODO: To be done path("accounts/store", mia_core_views.todo, name="accounts.store"), path("accounts/options", views.account_options, name="accounts.options"), + # TODO: To be done path("accounts/", mia_core_views.todo, name="accounts.show"), + # TODO: To be done path("accounts//edit", mia_core_views.todo, name="accounts.edit"), + # TODO: To be done path("accounts//update", mia_core_views.todo, name="accounts.update"), + # TODO: To be done path("accounts//delete", mia_core_views.todo, name="accounts.delete"), ]