aboutsummaryrefslogtreecommitdiffstats
path: root/config/urls.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-11-26 17:03:16 +0000
committerMatthew Lemon <y@yulqen.org>2024-11-26 17:03:16 +0000
commit04e490c0b0b65a21c531ac50a5ba321c79e14fa2 (patch)
tree428df0f34826b8aff22d9b37708ef286d3115015 /config/urls.py
parent78fd102b49f339af5432c2f0bebfab7ff9ac39bd (diff)
Got the basic form anbd privacy policy in place
Diffstat (limited to 'config/urls.py')
-rw-r--r--config/urls.py2
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"),