{% extends "admin/delete_confirmation.html" %} {% load i18n static unfold %} {% block extrahead %} {{ block.super }} {{ media }} {% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %}

{% if perms_needed or protected %} {% blocktrans with escaped_object=object %}You don't have permissions to delete {{ object_name }} "{{ escaped_object }}". Please request your site admin to add permissions to delete alias, or delete alias from all places that it being used.{% endblocktrans %} {% else %} {% blocktrans with escaped_object=object %}Are you sure you want to delete the {{ object_name }} "{{ escaped_object }}"?{% endblocktrans %} {% endif %}

{% if objects_list or hidden_usages %}

{% blocktrans with escaped_object=object %}This alias is used by following objects:{% endblocktrans %}

{% include "djangocms_alias/includes/usage_results.html" %} {% else %}

{% blocktrans with escaped_object=object %}This alias is not used by any object.{% endblocktrans %}

{% endif %}
{% csrf_token %}
{% if not perms_needed and not protected %} {% component "unfold/components/button.html" with submit=1 variant="danger" icon="delete" %} {% trans "Yes, I'm sure" %} {% endcomponent %} {% endif %} {% component "unfold/components/button.html" with href="#" variant="default" class="cancel-link" %} {% trans "No, take me back" %} {% endcomponent %}
{% endblock %}