{{ _('Upcoming Conferences') }}

{% for event in upcoming_events %} {% if event.conference_link %} {% else %} {% endif %} {% endfor %}
{{ _('Start Date') }}
{{ _('End Date') }}
{{ _('Conference') }}
{{ _('Location') }}
{{ _('Attendees') }}
{{ _('Description') }}
{{ event.date.strftime('%Y-%m-%d') }} {% if event.end_date %}{{ event.end_date.strftime('%Y-%m-%d') }}{% endif %}{{ event.conference }}{{ event.conference }}{{ event.location }} {{ event.people|safe }} {{ event.description|safe }}

{{ _('Past Conferences') }}

{% for event in past_events %} {% endfor %}
{{ _('Start Date') }}
{{ _('End Date') }}
{{ _('Conference') }}
{{ _('Location') }}
{{ _('Attendees') }}
{{ _('Description') }}
{{ _('Presentation Materials') }}
{{ event.date.strftime('%Y-%m-%d') }} {% if event.end_date %}{{ event.end_date.strftime('%Y-%m-%d') }}{% endif %} {{ event.conference }} {{ event.location }} {{ event.people|safe }} {{ event.description|safe }} {% if event.materials and event.materials != "n/a" %}Presentation Material{% endif %}