{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}{% if is_edit %}Edit event{% else %}Add event{% endif %} — {{ club.name }}{% endblock %} {% block content %} {% include "club_ribbon.html" %}

{% if is_edit %}Edit event{% else %}Add an event{% endif %}

{% crispy form %}
Back to {{ club.name }} {% if is_edit %}
{% csrf_token %}
{% endif %}

This event shows up on your club page right away. {% if club.google_calendar_connected %}It's added to your Google Calendar too.{% endif %} {% if club.discord_server_id and club.create_discord_events_for_club_events %} A Discord event is created for it as long as it's in the future. {% endif %} {% if not club.google_calendar_connected %} Connect Google Calendar to sync it there as well. {% endif %}

{% endblock %}