{% extends "combo/manager_base.html" %} {% load i18n thumbnail %} {% block appbar %} {% if application %}

{% if application.icon %} {% thumbnail application.icon '64x64' format='PNG' as im %} {% endthumbnail %} {% endif %} {{ application }}

{% else %}

{% trans 'Pages' %}

{% endif %} {% endblock %} {% block breadcrumb %} {{ block.super }} {% if application %} {{ application }} {% endif %} {% endblock %} {% block content %} {% if object_list %} {% if not application %}

{% blocktrans %} Use drag and drop with the ⣿ handles to reorder and change hierarchy of pages. {% endblocktrans %}

{% endif %}
{% for page in object_list %}
{% if user.is_superuser and not application %}{% endif %} {% if not application %} {% for application in page.applications %} {% if application.icon %} {% thumbnail application.icon '16x16' format='PNG' as im %} {% endthumbnail %} {% endif %} {% endfor %} {% endif %} {{ page.title }} {% for label in page.extra_labels %}{% if forloop.first %}({% endif %}{{ label }}{% if forloop.last %}){% else %}, {% endif %}{% endfor %} {% if not page.public %} {% with page.groups.all as page_groups %} {% for group in page_groups %}{{ group.name }}{% if not forloop.last %}, {% endif %} {% empty %} {% trans "logged users" %} {% endfor %} {% endwith %} {% endif %} {% if collapse_pages %}{% endif %}
{% endfor %}
{% else %}
{% blocktrans %} This site doesn't have any page yet. Click on the "New" button in the top right of the page to add a first one. {% endblocktrans %}
{% endif %} {% endblock %} {% block sidebar %} {% if not application %} {% endif %} {% endblock %}