{% extends "public/base.html" %} {% block title %}{{ room.title }} — {{ gallery.public_name or gallery.name }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Private Viewing Room

{{ room.title }}

{% if room.description %}

{{ room.description }}

{% endif %} {% if room.closes_at %}

Available until {{ room.closes_at.strftime("%d %B %Y") }}

{% endif %}
{% for vra in artworks %} {% set aw = vra.artwork %} {% set img = aw.images[0] if aw.images else none %}
{% if img and img.iiif_url %} {% else %}
{% endif %}
{{ aw.title }}
{% if aw.artist %}{{ aw.artist.first_name }} {{ aw.artist.last_name }}{% endif %}
{% if aw.year_from %}{{ aw.year_from }} · {% endif %} {% if aw.medium %}{{ aw.medium }}{% endif %} {% if aw.dimensions %}
{{ aw.dimensions }}{% endif %}
{% if aw.status == "available" %} Enquire {% else %} {{ aw.status|replace("_"," ")|title }} {% endif %}
{% endfor %}
{% endblock %}