{% extends "base.html" %} {% load i18n %} {% block content %} {{ block.super }}

{% blocktrans %} Delete User {{ to_delete }}{% endblocktrans %}

{% blocktrans %}Deleting this User will remove any related objects associated with it. These relationships are listed below:{% endblocktrans %}

{% trans "Danger Zone" %}

{% if rels|length > 1 %} {% else %}

{% trans "No relationships found." %}

{% endif %}
{% csrf_token %} {{ form }}


{% endblock %}