{% extends "oneevent/base_confirmation.html" %} {% block navbar_breadcrumbs %}
  • Account
  • Delete
  • {% endblock %} {% block heading_action %}Delete User{% endblock %} {% block heading_title %}{{ user.email }}{% endblock %} {% block post_url %}{% url 'user_delete' %}{% endblock %} {% block additional_info %}

    Are you sure you want to delete your account?

    The following records will also be deleted from the application. They will not be recoverable!

    {% endblock %} {% block extra_details %} {% for event in user.events_owned.all %}
    {{ event.title }} {{ event.start|date:"D, d N Y" }} Edit event
    • From {{ event.start|date:"D, d N Y H:i" }} to {{ event.get_real_end|date:"D, d N Y H:i" }} ({{ event.timezone }})
    • Location: {{ event.location_name }}
    • Status: {{ event.get_pub_status_display }}
    • Participants: {{ event.get_active_bookings.count }} confirmed ({{ event.bookings.count }} total}
    {% endfor %} {% endblock %}