Skip to content

Commit

Permalink
Switch deadline calendar entry to abbreviation
Browse files Browse the repository at this point in the history
Use the conference abbreviation in the calendar events instead of the
full name
  • Loading branch information
klb2 committed Nov 4, 2024
1 parent b9c5d0c commit 92a28a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion generate_website.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ def main():
uid = "{:%Y%m%d}-{}".format(deadline, conference["abbreviation"])
event.add("uid", uid)
event.add("dtstamp", today)
event.add("summary", conference['name'])
#event.add("summary", conference['name'])
event.add("summary", f"Deadline: {conference['abbreviation']}")
event.add("dtstart", deadline)
cal_deadline.add_component(event)
with open(os.path.join(DIR_PUBLIC, "conferences.ics"), "wb") as ics_file:
Expand Down

0 comments on commit 92a28a8

Please sign in to comment.