{% extends "public/base.html" %} {% block title %}Exhibitions — {{ gallery.public_name or gallery.name }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ _("Programme") }}
{{ _("Exhibitions") }}
{% if current %}
{% for ex in current %} {% set ea = ex.artworks[0] if ex.artworks else none %} {% set aw = ea.artwork if ea else none %} {% set img = aw.images[0] if aw and aw.images else none %}
{% if img and img.iiif_url %} {% else %}
{% endif %}
{{ ex.title }}
{% if ex.venue %}{{ ex.venue }} · {% endif %} {% if ex.start_date %}{{ ex.start_date|ch_date }}{% if ex.end_date %} – {{ ex.end_date|ch_date }}{% endif %}{% endif %}
{% endfor %}
{% endif %} {% if forthcoming %}
{% for ex in forthcoming %} {% set ea = ex.artworks[0] if ex.artworks else none %} {% set aw = ea.artwork if ea else none %} {% set img = aw.images[0] if aw and aw.images else none %}
{% if img and img.iiif_url %} {% else %}
{% endif %}
{{ _("Forthcoming") }}
{{ ex.title }}
{% if ex.start_date %}Opens {{ ex.start_date|ch_date }}{% endif %}
{% endfor %}
{% endif %} {% if past %}
{% endif %} {% if not current and not forthcoming and not past %}

No exhibitions scheduled.

{% endif %}
{% endblock %}