diff options
author | Matthew Lemon <y@yulqen.org> | 2024-11-26 17:03:16 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-11-26 17:03:16 +0000 |
commit | 04e490c0b0b65a21c531ac50a5ba321c79e14fa2 (patch) | |
tree | 428df0f34826b8aff22d9b37708ef286d3115015 /config/urls.py | |
parent | 78fd102b49f339af5432c2f0bebfab7ff9ac39bd (diff) |
Got the basic form anbd privacy policy in place
Diffstat (limited to 'config/urls.py')
-rw-r--r-- | config/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/urls.py b/config/urls.py index c77f187..e213522 100644 --- a/config/urls.py +++ b/config/urls.py @@ -15,7 +15,7 @@ from django.views.generic import TemplateView admin.site.site_header = "Blackbird Admin Panel" urlpatterns = [ - path("", login_required(TemplateView.as_view(template_name="pages/home.html")), name="home"), + path("", TemplateView.as_view(template_name="pages/home.html"), name="home"), path( "about/", TemplateView.as_view(template_name="pages/about.html"), |