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

{% trans 'Pages' %}

{% if user.is_superuser %} {% endif %} {% if can_add_page %} {% trans 'New' %} {% endif %} {% if user.is_superuser %} {% endif %} {% endblock %} {% block content %} {% if object_list %}

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

{% for page in object_list %}
{% if user.is_superuser %}{% 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 %}