{% extends "spider_base/uc_base.html" %} {% load i18n %} {% block title %}{% blocktrans trimmed with name=object.name %} Delete: {{name}} {% endblocktrans %}{% endblock %} {% block content %}
{# index is redirected in view #} {% trans 'Back' %}

{% blocktrans trimmed %} Delete User Component: {% endblocktrans %} {{object.name}}

{% blocktrans trimmed with name=object %} Warning this deletes the component and all depending content.
Go back if you don't want to this and you didn't hit delete.
You can abort the deletion process with reset if it is shown.
It is always shown except no deletion is in progress.
{% endblocktrans %}
{% for content in object.contents.all %} {% endfor %}
{% trans 'Deleted Content' %}
{{content}}
{% if not remaining or remaining == 0 %}
{% csrf_token %}
{% endif %} {% if remaining %}
{% csrf_token %}
{% endif %}
{% endblock %}