summaryrefslogtreecommitdiff
path: root/app/budget/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/budget/urls.py')
-rw-r--r--app/budget/urls.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/app/budget/urls.py b/app/budget/urls.py
deleted file mode 100644
index ef7852f..0000000
--- a/app/budget/urls.py
+++ /dev/null
@@ -1,29 +0,0 @@
-from django.urls import path, re_path
-
-from . import views
-
-app_name = "luxbudget"
-
-urlpatterns = [
- path(
- 'cat',
- views.LuxSourceModelFormView.as_view(),
- name='createcatview'
- ),
- path(
- 'record',
- views.PurchaseModelFormView.as_view(),
- name='createview'
- ),
- path(
- 'purchase/<pk>',
- views.PurchaseUpdateView.as_view(),
- name='detail'
- ),
- path(
- '',
- views.LuxPurchaseListView.as_view(),
- {'page':1},
- name='list'
- ),
-]