{% extends "base.html" %} {% block title %}Art Fairs — ArtNode{% endblock %} {% block content %}
{% if fairs %} {% for fair in fairs %} {% endfor %}
Fair Location Dates Sales
{{ fair.name }} {{ fair.location or "—" }} {% if fair.start_date %}{{ fair.start_date|ch_date }}{% endif %} {% if fair.end_date %} – {{ fair.end_date|ch_date }}{% endif %} {{ fair.sales|selectattr('status', 'ne', 'cancelled')|selectattr('status', 'ne', 'draft')|list|length }}
{% else %}

No art fairs yet

Create a fair session to manage booth sales.

{% endif %}
{% endblock %}