{% extends "base.html" %} {% block title %}{{ room.title }} — ArtNode{% endblock %} {% block content %}
Share this link with collectors
{{ public_url }}
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 %}
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.artist %}{{ aw.artist.last_name }}{% endif %}
{% endif %} {% endfor %}
{% endblock %}