{% extends "pretixcontrol/event/settings_base.html" %} {% load i18n %}{% load bootstrap3 %} {% block inside %}

{% trans "GDPR data shredder" %}

{% blocktrans %}Automatically anonymise attendee personal data (names, emails, addresses) a set time after the event — UK GDPR data-minimisation. Order totals and legally-required invoice records are kept; only personal identifiers are scrubbed. This is irreversible when live, so it defaults to a dry-run report.{% endblocktrans %}

{% if done %}
{% trans "This event has already been anonymised." %}
{% elif is_due %}
{% trans "This event is past its retention window and is pending anonymisation on the next run." %}
{% endif %}
{% csrf_token %} {% bootstrap_form form layout="horizontal" %}
{% if logs %}

{% trans "Recent runs" %}

{% for l in logs %}{% endfor %}
{% trans "When" %}{% trans "Mode" %}{% trans "Orders" %}{% trans "Records" %}
{{ l.created }}{% if l.dry_run %}dry-run{% else %}live{% endif %}{{ l.orders_scrubbed }}{{ l.positions_scrubbed }}
{% endif %} {% endblock %}