From a92fe6ef963cdf00f3b5fcfa2b6fe7da8cba68be Mon Sep 17 00:00:00 2001 From: Victoria Barseth Date: Wed, 11 Sep 2024 18:32:03 +0200 Subject: [PATCH] Fikset link til events i kalender ;) ;* uwu --- apps/events/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/events/utils.py b/apps/events/utils.py index 329ad6757..a095519c9 100644 --- a/apps/events/utils.py +++ b/apps/events/utils.py @@ -164,6 +164,7 @@ def add_event(self, event): cal_event.add("summary", event.title) cal_event.add("description", event.ingress_short) cal_event.add("uid", "event-" + str(event.id) + "@online.ntnu.no") + cal_event.add("url", f"https://online.ntnu.no/events/{event.id}") self.cal.add_component(cal_event)