{% extends 'users/base.html' %} {% block user_content %}
{%- trans %}Details{% endtrans -%}
{% if session.user.is_admin %}
{% if allow_deletion %} {% if user == session.user %} {% set disabled_message = _('You cannot delete your own account') %} {% elif user.is_admin %} {% set disabled_message = _('You cannot delete an admin account') %} {% else %} {% set disabled_message = none %} {% endif %} {% trans %}Once deleted, the following will happen:{% endtrans %}
  • {% trans first_name=user.first_name %} {{ first_name }} will no longer be able to access Indico. {% endtrans %}
  • {% trans first_name=user.first_name %} {{ first_name }} will be removed from all areas of Indico - this does not affect their presence in events as a speaker or other role; they will still be listed in such capacities where applicable. {% endtrans %}
  • {% trans first_name=user.first_name %} Where it is not possible to delete {{ first_name }}, they will be anonymized and all personal data associated with the user will be removed from Indico. {% endtrans %}
{% endif %}
{% endif %}
{% endblock %}