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

{% trans 'Page' %} - {{ object.title }}

{% trans 'see online' %} {% trans 'export' %} {% trans 'delete' %} {% endblock %} {% block breadcrumb %} {{ block.super }} {% trans 'Page' %} - {{object.title }} {% endblock %} {% block content %}
{% for placeholder in placeholders %}

{{ placeholder.name }}

{% for cell in placeholder.cells %}

{{ cell.get_label }} {% if cell.slug %} [{{cell.slug}}] {% endif %} {% if cell.extra_css_class %} [{{ cell.extra_css_class }}] {% endif %} {{cell.get_additional_label|default_if_none:""}} {% if not cell.public %} {% if cell.groups.all|length %} {% for group in cell.groups.all %}{{group.name}}{% if not forloop.last %}, {% endif %}{% endfor %} {% else %} {% trans "logged users" %} {% endif %} {% elif cell.restricted_to_unlogged %} {% trans "unlogged users" %} {% endif %}

{% cell_form cell %}
{% endfor %}
{% trans 'Add a new cell' %}
{% endfor %}
{% endblock %}