{% 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 }}".{% endblocktrans %} {% if redirect_url_is_absolute %} {% trans "It will also be used as a template for the pages behind this URL." %} {% endif %}

{% endif %}
{% for placeholder in placeholders %}

{{ placeholder.name }}

{% trans "Options" %}
{% for cell in placeholder.cells %}

{{ cell.get_label }} {% if cell.template_name %}({{cell.get_template_label}}){% endif %} {% if cell.slug %}[{{cell.slug}}]{% endif %} {% if cell.cleaned_extra_css_class %}[{{ cell.cleaned_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 %} {{ cell.get_manager_visibility_content }}

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