Skip to content

Commit 1f744ee

Browse files
Update views.py
Co-authored-by: Ee Durbin <ewdurbin@gmail.com>
1 parent 64a229f commit 1f744ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

events/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def get_queryset(self) -> Event:
4747
return Event.objects.all().order_by("-occurring_rule__dt_start")
4848

4949
def get_context_data(self, **kwargs: dict) -> dict:
50-
"""Add more ctx, specifically events that are happening now, just misse, and upcoming."""
50+
"""Add more ctx, specifically events that are happening now, just missed, and upcoming."""
5151
context = super().get_context_data(**kwargs)
5252
context["events_just_missed"] = Event.objects.until_datetime(timezone.now())[:2]
5353
context["upcoming_events"] = Event.objects.for_datetime(timezone.now())

0 commit comments

Comments
 (0)