1
1

copy whole project from another repo

This commit is contained in:
2020-02-18 16:01:28 +01:00
commit aadff671bd
30 changed files with 1290 additions and 0 deletions

13
floplanner/urls.py Normal file
View File

@@ -0,0 +1,13 @@
from django.contrib.auth.views import LoginView, LogoutView
from django.urls import path, include
from django.views.generic import RedirectView
from financeplanner.admin import admin_site
urlpatterns = [
path("admin/", admin_site.urls),
path("login/", LoginView.as_view(), name="login"),
path("logout/", LogoutView.as_view(), name="logout"),
path("finance/", include(("financeplanner.urls", "financeplanner"), namespace="finance")),
path("", RedirectView.as_view(pattern_name="finance:index", permanent=False), name="index"),
]