{% extends "base.html" %} {% block title %}Viewing Rooms — ArtNode{% endblock %} {% block content %}
{% if rooms %} {% for room in rooms %} {% endfor %}
Title Dates Works Status
{{ room.title }} {% if room.opens_at %}{{ room.opens_at|ch_date }}{% endif %} {% if room.closes_at %} – {{ room.closes_at|ch_date }}{% endif %} {% if not room.opens_at and not room.closes_at %}—{% endif %} {{ room.artworks|length }} {% if room.is_active %} Active {% else %} Draft {% endif %} {% if room.access_code_hash %} 🔒 Protected {% endif %}
{% else %}

No viewing rooms yet

Create a private online viewing room to share with collectors.

{% endif %}
{% endblock %}