diff --git a/aleksis/core/views.py b/aleksis/core/views.py
index bbbe7cc1871735e006c64f0fd8726d39312ec6a1..ff4648c65951119acf593edecc2a00b047e04b6b 100644
--- a/aleksis/core/views.py
+++ b/aleksis/core/views.py
@@ -96,7 +96,6 @@ from .models import (
     DashboardWidget,
     DashboardWidgetOrder,
     DataCheckResult,
-    DummyPerson,
     Group,
     GroupType,
     OAuthApplication,
@@ -213,23 +212,27 @@ def index(request: HttpRequest) -> HttpResponse:
     if has_person(request.user):
         person = request.user.person
         widgets = person.dashboard_widgets
+        activities = person.activities.all().order_by("-created")[:5]
+        notifications = person.notifications.filter(send_at__lte=timezone.now()).order_by(
+            "-created"
+        )[:5]
+        unread_notifications = person.notifications.filter(
+            send_at__lte=timezone.now(), read=False
+        ).order_by("-created")
+        announcements = Announcement.objects.at_time().for_person(person)
+
     else:
-        person = DummyPerson()
+        person = None
+        activities = []
+        notifications = []
+        unread_notifications = []
         widgets = []
-
-    activities = person.activities.all().order_by("-created")[:5]
-    notifications = person.notifications.filter(send_at__lte=timezone.now()).order_by("-created")[
-        :5
-    ]
-    unread_notifications = person.notifications.filter(
-        send_at__lte=timezone.now(), read=False
-    ).order_by("-created")
+        announcements = []
 
     context["activities"] = activities
     context["notifications"] = notifications
     context["unread_notifications"] = unread_notifications
 
-    announcements = Announcement.objects.at_time().for_person(person)
     context["announcements"] = announcements
 
     if len(widgets) == 0: