{% extends "base.html" %} {% block title %}New Art Fair — ArtNode{% endblock %} {% block content %}
{{ form.hidden_tag() }}
Fair Details
{{ form.name.label(class="form-label") }} {{ form.name(class="form-control", placeholder="e.g. Art Basel 2026") }} {% if form.name.errors %}
{{ form.name.errors[0] }}
{% endif %}
{{ form.location.label(class="form-label") }} {{ form.location(class="form-control", placeholder="e.g. Messe Basel, Hall 2.1, Booth B12") }}
{{ form.start_date.label(class="form-label") }} {{ form.start_date(class="form-control") }}
{{ form.end_date.label(class="form-label") }} {{ form.end_date(class="form-control") }}
Cancel
{% endblock %}