diff --git a/agenda/conference.py b/agenda/conference.py index 14d5b31..50b0b35 100644 --- a/agenda/conference.py +++ b/agenda/conference.py @@ -33,6 +33,8 @@ class Conference: currency: str | None = None latitude: float | None = None longitude: float | None = None + cfp_end: date | None = None + cfp_url: str | None = None @property def display_name(self) -> str: diff --git a/templates/conference_list.html b/templates/conference_list.html index 6c66c3b..a0238b5 100644 --- a/templates/conference_list.html +++ b/templates/conference_list.html @@ -3,7 +3,7 @@ {% from "macros.html" import trip_link, conference_row with context %} {% block style %} -{% set column_count = 7 %} +{% set column_count = 8 %}