summaryrefslogtreecommitdiff
path: root/bak/unused_apps/budget/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'bak/unused_apps/budget/urls.py')
-rw-r--r--bak/unused_apps/budget/urls.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/bak/unused_apps/budget/urls.py b/bak/unused_apps/budget/urls.py
new file mode 100644
index 0000000..ef7852f
--- /dev/null
+++ b/bak/unused_apps/budget/urls.py
@@ -0,0 +1,29 @@
+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'
+ ),
+]