In this room ({{ room.artworks|length }})
{% for vra in room.artworks|sort(attribute='sort_order') %}
{% set aw = vra.artwork %}
{% set img = aw.images[0] if aw.images else none %}
{% if img and img.iiif_url %}

{% endif %}
{{ aw.title }}
{% if aw.artist %}{{ aw.artist.last_name }}{% endif %}
{% else %}
No artworks added yet.
{% endfor %}