{% extends "base.html" %} {% block title %}{{ 'Edit Event' if event else 'Create Event' }} - Grassroots Events{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ 'Edit Event' if event else 'Create New Event' }}

{% if suggested_venues %}
Suggested Venues (based on your usage):
{% for venue in suggested_venues %}
{{ venue.name }} {% if venue.is_default %} Default {% endif %} {% if venue.is_shared %} Shared {% endif %}
{% if venue.constituency %}{{ venue.constituency }}{% endif %} {% if venue.capacity %} • Capacity: {{ venue.capacity }}{% endif %} {% if venue.is_shared %} From nearby GROs {% endif %}
{% if venue.usage_count > 0 %} Used {{ venue.usage_count }}x {% endif %} {% if venue.is_permanent == False and venue.usage_count > 0 %} {% endif %}
{% endfor %}
Click on any suggested venue above to auto-fill
{% else %}
No frequent venues yet. Add your first venue to see suggestions here.
{% endif %}
Select a suggested venue above or type a custom location.
Auto-filled from your profile (read-only)
Auto-filled from your profile (read-only)
When will the GRA arrive?
When will the GRA depart?
{% if event %}
{% endif %}
Cancel
{% endblock %}