{% from "macros/_form.html" import render_form %} {% extends "layout.html" %} {% block page_title %}Edit: {{event.name}}{% endblock %} {% block body_class %}eventform eventedit{% endblock %} {% block content %}

Edit event

{% if current_user.active and current_user.is_admin %}
Edit all details Teams Add a team
{% endif %} Cancel
{{ render_form(url_for('public.event_edit', event_id=event.id), form, formid='eventEdit') }}
{% if config.S3_KEY %} {% endif %} {% include "includes/uploader.html" %} {% endblock %}