{% extends "base.html" %} {% block title %}Delete account{% endblock %} {% block content %} {% include "preferences_ribbon.html" %}

Delete your account

{% if deletion_due %} {% comment %} Already asked: the only thing this page still needs to offer is the way out. {% endcomment %}
Your account is scheduled to be deleted

Everything below happens on {{ deletion_due|date:"F j, Y" }}. Until then nothing has changed, and you can stop it right here.

{% csrf_token %}
{% endif %}

Deleting your account removes you and your personal details from {{ navbar_brand }}. Records that belong to other people — auction results, invoices, and what clubs keep about their own members — stay, without your name attached. Here is exactly what that means.

What is deleted
What stays
{% if summary.auctions_created or summary.clubs_administered %} {% comment %} Not a blocker -- just the thing they'd want to have known afterwards. {% endcomment %}
{% if summary.auctions_created %} You've created {{ summary.auctions_created }} auction{{ summary.auctions_created|pluralize }}, which will stay on the site without you. {% endif %} {% if summary.clubs_administered %} You're an admin of {{ summary.clubs_administered }} club{{ summary.clubs_administered|pluralize }}. {% endif %} Make sure somebody else has admin access before you go.
{% endif %}

Read the privacy policy for what we store and who can see it.

{% if not deletion_due %}
Delete my account

Your account will be deleted in {{ grace_period_days }} days. Until then, signing in again cancels it — after that it can't be undone.

{% csrf_token %} Cancel
{% endif %}
{% endblock %}