aboutsummaryrefslogtreecommitdiff
path: root/apps/core
diff options
context:
space:
mode:
authorBobby <[email protected]>2024-12-16 18:38:05 +0000
committerBobby <[email protected]>2024-12-16 18:38:05 +0000
commitea8f5e8517161c1bd52f61198138dfd2fc72f8e2 (patch)
tree19dd955137c8c6bb9c1143bbced320737cd93b09 /apps/core
parent04788ddd83c5e80a09a468d07427f0e365db71d7 (diff)
downloadthatcomputerscientist-ea8f5e8517161c1bd52f61198138dfd2fc72f8e2.tar.xz
thatcomputerscientist-ea8f5e8517161c1bd52f61198138dfd2fc72f8e2.zip
its all in a state of chaos, but it shall be working soon
Diffstat (limited to 'apps/core')
-rw-r--r--apps/core/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/core/views.py b/apps/core/views.py
index 0e23722a..037f52c2 100644
--- a/apps/core/views.py
+++ b/apps/core/views.py
@@ -12,7 +12,7 @@ def home(request):
"title": "Home",
}
LANGUAGE_CODE = i18npatterns(request.LANGUAGE_CODE)
- request.meta.update(META)
+ request.META.update(META)
announcements = Announcement.objects.filter(is_public=True).order_by("-created_at")
context = {
"announcements": announcements,