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

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

{% trans 'See online' %} {% endblock %} {% block breadcrumb %} {{ block.super }} {% trans 'Page' %} - {{object.title }} {% endblock %} {% block sidebar %} {% endblock %} {# sidebar #} {% block content %}
{% if object.redirect_url %}

{% blocktrans with redirect_url=object.redirect_url %}This page is configured as a redirection to the URL "{{ redirect_url }}", it can also be used as a template for the pages behind this URL.{% endblocktrans %}

{% endif %}
{% 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 cell.get_invalid_reason %} {{ cell.get_invalid_reason }}{% if cell.class_name != 'link-list-cell' %} - {% if cell.get_validity_info.invalid_datetime|datetime_in_past %} {% blocktrans with cell.get_validity_info.invalid_datetime|date:"DATETIME_FORMAT" as invalidity_date %}This cell is no longer displayed since {{ invalidity_date }}.{% endblocktrans %} {% else %} {% blocktrans with cell.get_validity_info.invalid_datetime|timeuntil as invalidity_delay %}This cell will no longer be displayed in {{ invalidity_delay }}.{% endblocktrans %} {% endif %} {% endif %} {% endif %} {% 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 %}