{% extends "base.html" %} {% block title %}{{ series.name }} - Edward Betts{% endblock %} {% block content %}

{{ series.name }}

{% if series.topic %}
Topic
{{ series.topic }}
{% endif %} {% if series.usual_location or series.country %}
Usual location
{% set country = get_country(series.country) if series.country else None %} {% if country %}{{ country.flag }} {% endif %}{{ series.usual_location or "" }}
{% endif %} {% if series.cadence %}
Cadence
{{ series.cadence }}
{% endif %} {% if series.url %}
Website
{{ series.url }}
{% endif %} {% if series.notes %}
Notes
{{ series.notes }}
{% endif %}

Editions

{% for item in conferences %} {% endfor %}
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 %}
{% endblock %}