{% extends "public/base.html" %} {% block title %}{{ exhibition.title }} — {{ gallery.public_name or gallery.name }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Exhibition
{{ exhibition.title }}
{% if exhibition.venue %}{{ exhibition.venue }}{% endif %} {% if exhibition.start_date %} · {{ exhibition.start_date|ch_date }}{% if exhibition.end_date %} – {{ exhibition.end_date|ch_date }}{% endif %}{% endif %}
{% set desc, desc_lang = get_trans(exhibition, "description") %} {% if desc %}

{{ desc }}

{% endif %}
{% if artworks %}
Works in Exhibition
{% for aw in artworks %} {% set img = aw.images[0] if aw.images else none %}
{% if img and img.iiif_url %} {{ aw.title }} {% else %}
{% endif %}
{{ aw.title }}
{% if aw.artist %}{{ aw.contact_artist.last_name if aw.contact_artist else (aw.artist.last_name if aw.artist else "") }}{% endif %}
{% endfor %}
{% else %}

No works listed for this exhibition.

{% endif %}
{% endblock %}