Skip to content
Snippets Groups Projects
Commit 9e6178b1 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Fix dashboard if user is connected to a DummyPerson

parent 092963f4
No related branches found
No related tags found
1 merge request!1130Dashboard was broken if user was connected to a DummyPerson. Closes #771
Pipeline #103550 passed with warnings
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment