{% extends "base.html" %} {% block title %}{% if exhibition %}Edit Exhibition{% else %}New Exhibition{% endif %} — ArtNode{% endblock %} {% block content %}
{{ form.hidden_tag() }}
Exhibition Details
{{ form.title.label(class="form-label") }}{{ form.title(class="form-control", placeholder="Exhibition title") }}{% if form.title.errors %}
{{ form.title.errors[0] }}
{% endif %}
{{ form.venue.label(class="form-label") }}{{ form.venue(class="form-control", placeholder="e.g. Galerie Beispiel, Zürich") }}
{{ 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") }}
{% for lang in ["de","fr","it","en"] %}
{{ lang|upper }}
{% endfor %}
Cancel
{% endblock %}