Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/program/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ def get(self, request, *args, **kwargs):
cal = icalendar.Calendar()
cal.add("prodid", "-//BornHack Website iCal Generator//bornhack.dk//")
cal.add("version", "2.0")
cal.add("NAME", "BornHack")
cal.add("X-WR-CALNAME", "BornHack")
for slot in event_slots:
cal.add_component(slot.get_ics_event())

Expand Down
Loading