{% extends "base.html" %} {% block title %}{{ event.title }}{% endblock %} {% block content %}

{{ event.title }}

{% if event.description %}
{{ event.markdown|safe }}
{% endif %}
{% if event.image %}
{{ event.title }} image
{% endif %} {% if response %}

Hello {{ response.rsvp.name }}!

{% if response.not_started %} You have been invited! Please let us know if you are coming!

Respond now! I am not coming {% elif response.in_progress %} You have not finished responding! Please let us know if you are coming!

Continue responding now! I am not coming {% elif response.not_coming %} Sad that you are not coming?

I changed my mind! {% elif response.joining %} You have responded!

Update response! I can no longer come {% endif %}
{% else %}

Want to come?

Use your invite link, or the one in your inbox to respond!
{% endif %}

Activities

{% for group, activities in groups.items %}

{{ group.title }} {% if group.single_choice %} Only one {% endif %}

{% for activity in activities %} {% include "event/event_activity_details.html" %} {% endfor %} {% endfor %} {% if ungrouped_activities %}

Other activities

{% for activity in ungrouped_activities %} {% include "event/event_activity_details.html" %} {% endfor %} {% endif %}
{% endblock %}