diff options
author | luxagraf <sng@luxagraf.net> | 2025-01-03 18:46:40 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2025-01-03 18:46:40 -0600 |
commit | fe7d43f308bbc3953d4a88480b8088d12cbcb0b6 (patch) | |
tree | 3aa10d1ac8e041ad2b78a5acf6b29febad6a5fe3 /app/budget/urls.py | |
parent | df3bc581e496412ef8c263dbf1cfe00f184e4e59 (diff) |
archived old not used apps
Diffstat (limited to 'app/budget/urls.py')
-rw-r--r-- | app/budget/urls.py | 29 |
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' - ), -] |