{% extends "base.html" %} {% block title %}{{ exhibition.title }} — ArtNode{% endblock %} {% block content %}
{% if exhibition.description %}
{{ exhibition.description }}
{% endif %}
In Exhibition ({{ exhibition.artworks|length }})
{% for ea in exhibition.artworks|sort(attribute='sort_order') %} {% set aw = ea.artwork %}
{% set img = aw.images[0] if aw.images else none %} {% if img and img.iiif_url %} {% endif %}
{{ aw.title }}
{% if aw.contact_artist %}{{ aw.contact_artist.last_name }}{% elif aw.artist %}{{ aw.artist.last_name }}{% endif %}
{% else %}

No artworks added yet.

{% endfor %}
Add Artworks
{% for aw in available %} {% if aw.id not in assigned_ids %}
{% set img = aw.images[0] if aw.images else none %} {% if img and img.iiif_url %} {% endif %}
{{ aw.title }}
{% if aw.contact_artist %}{{ aw.contact_artist.last_name }}{% elif aw.artist %}{{ aw.artist.last_name }}{% endif %}
{% endif %} {% endfor %}
{% endblock %}