{% extends "mvp/list.inc.html" %} {% load i18n %} {% load common %} {% block delete-warning %}

{% blocktrans %}You are about to delete OBJECT.{% endblocktrans %}

{% trans "This will irreversibly remove it from the site." %}

{% trans "Are you certain that you wish to continue?" %}

{% endblock delete-warning %} {% block modal %} {{ block.super }} {% endblock modal %} {% block table-row-empty %} {% if path %}   {{ parent }} {% endif %} {% trans "Add your first" %} {% trans "file" %} or {% trans "folder" %} {% trans "now" %}. {% endblock %} {% block table-row %} {# This feels a bit hacky, but probably better than reimplementing list.inc.html entirely #} {% if forloop.first and path %}   {{ parent }} {% endif %} {% block table-columns %}   {% if obj.urls.detail %} {{ obj }} {% elif obj.urls.edit %} {{ obj }} {% else %} {{ obj }} {% endif %} {% endblock table-columns %}
{% endblock %}