{% extends "combo/manager_base.html" %} {% load i18n %} {% load cells %} {% load thumbnail %} {% block appbar %} {% with object.get_sub_slug_details as sub_slug_details %}

{% trans 'Page' %} - {{ object.title }}{% if with_wcs and sub_slug_details.1 %} ({% blocktrans with card_model=sub_slug_details.1 %}page linked to card model "{{ card_model }}"{% endblocktrans %}){% endif %}

{% endwith %} {% if not is_readonly %} {% trans 'See online' %} {% else %} {% trans 'See online' %} {% endif %} {% endblock %} {% block breadcrumb %} {{ block.super }} {% if not is_readonly %} {% trans 'Page' %} - {{object.title }} {% else %} {% trans 'Page' %} - {{object.title }} {% trans 'History' %} {{ snapshot.timestamp }} {% endif %} {% 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 }}

{% if not is_readonly %} {% trans "Options" %} {% endif %}
{% 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 %}
{% if not is_readonly %}
{% trans 'Add a new cell' %}
{% endif %}
{% endfor %}
{% endblock %}