{% extends "admin/base_site.html" %} {% load i18n static %} {% comment %} Shared shell for filer's action confirmation pages, in the markup Unfold uses for its own (admin/delete_selected_confirmation.html). filer's templates carry no blocks and folderadmin.py hardcodes their paths, so each page is replaced rather than extended — this base is what keeps that to a few lines per page. Blocks: `heading`, `objects`, `action` (the action name filer dispatches on), `extra_hidden`, `fields`, `footnote`, `submit_row`, `action_extrahead`. A page whose branch has nothing to confirm ("no permission", "nothing to copy") overrides `content` and renders action_notice.html instead, falling back to `{{ block.super }}` for the real thing. {% endcomment %} {% block breadcrumbs %}{% endblock %} {% block extrahead %} {{ block.super }} {% block action_extrahead %}{% endblock %} {% endblock %} {% block content %}

{% block heading %}{% endblock %}

{% block objects %}{% endblock %}
{% csrf_token %} {% for f in files_queryset %} {% endfor %} {% for f in folders_queryset %} {% endfor %} {% block extra_hidden %}{% endblock %} {% block fields %}{% endblock %} {% block footnote %}{% endblock %} {% block submit_row %}{% endblock %}
{% endblock %}