Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
wagtail-gardentronic / admin / templates / wagtailadmin / collections / delete_not_empty.html
Size: Mime:
{% extends "wagtailadmin/base.html" %}
{% load i18n %}
{% block titletag %}{{ view.page_title }}{% endblock %}

{% block content %}
    {% include "wagtailadmin/shared/header.html" with title=view.page_title subtitle=view.get_page_subtitle icon=view.header_icon %}

    <div class="nice-padding">
        <p>
            {% trans 'This collection cannot be deleted, because it is not empty. It contains:' %}
        </p>
        <ul>
            {% for item_type in collection_contents %}
                <li>
                    {% if item_type.url %}
                        <a href="{{ item_type.url }}">{{ item_type.count_text }}</a>
                    {% else %}
                        {{ item_type.count_text }}
                    {% endif %}
                </li>
            {% endfor %}
        </ul>
    </div>
{% endblock %}