{% extends "base.html" %} {% block title %}Exhibitions — ArtNode{% endblock %} {% block content %}
{% if exhibitions %} {% for ex in exhibitions %} {% endfor %}
Title Venue Dates Works Status
{{ ex.title }} {{ ex.venue or "—" }} {% if ex.start_date %}{{ ex.start_date|ch_date }}{% endif %} {% if ex.end_date %} – {{ ex.end_date|ch_date }}{% endif %} {% if not ex.start_date and not ex.end_date %}—{% endif %} {{ ex.artworks|length }} {% if ex.start_date and ex.end_date %} {% set today = today_date %} {% if ex.start_date.date() <= today and ex.end_date.date() >= today %} Current {% elif ex.start_date.date() > today %} Forthcoming {% else %} Past {% endif %} {% else %} {% endif %}
{% else %}

No exhibitions yet

Create your first exhibition to get started.

{% endif %}
{% endblock %}