{% extends "base.html" %} {% block title %}{{ series.name }} - Edward Betts{% endblock %} {% block content %}
| Dates | Conference | Location | Attendance |
|---|---|---|---|
| {{ item.display_date }} {% if item.date_status == "tentative" %} tentative {% elif item.date_status == "approximate" %} approximate {% endif %} | {% if item.url %}{{ item.name }} {% else %}{{ item.name }}{% endif %} | {% set country = get_country(item.country) if item.country else None %} {% if country %}{{ country.flag }} {% endif %}{{ item.location }} | {% if item.going %} going {% endif %} {% if item.registered %} registered {% endif %} {% if item.linked_trip %} {% set trip = item.linked_trip %} trip{% if trip.title != item.name %}: {{ trip.title }}{% endif %} {% endif %} |