Skip to content
Snippets Groups Projects
Commit 4505f33b authored by Felix Blanke's avatar Felix Blanke
Browse files

Fix event filter

parent 05dbef0b
No related branches found
No related tags found
1 merge request!5Refactor main
Pipeline #266801 failed
......@@ -114,7 +114,7 @@ class AKJSONExportView(AdminViewMixin, FilterByEventSlugMixin, ListView):
if (values := AKSlot.objects.select_related().filter(ak__pk=ak_id, fixed=True)).exists()
}
if DefaultSlot.objects.filter(event=self).exists():
if DefaultSlot.objects.filter(event=self.event).exists():
# discretize default slots if they exists
blocks = merge_blocks(self.event.default_time_slots(slots_in_an_hour=SLOTS_IN_AN_HOUR))
else:
......
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