{% extends 'easycms/base.html' %} {% block easycms_title %}Preview Page: {{ page.title }}{% endblock %} {% block easycms_h1 %}{% endblock easycms_h1 %} {% block easycms_content %}
Back to Pages {% if page.front_end_url %} View Live Page {% endif %} {% if access_control.can_edit_page() %} Edit Page {% endif %} {% if settings.page_publishing_enabled and not page.published and access_control.can_publish_page() %} Publish Page {% endif %} {% if settings.page_publishing_enabled and (page.published_by or page.published_page) and access_control.can_publish_page() %} Published Page History {% endif %}
{% if settings.page_publishing_enabled and not page.published %}
This page contains unpublished content. To view the published version click here: View Published Content
{% endif %} {% if published %}
You are viewing the published version of this page. To view the latest unpublished version click here: View Un-Published Content
{% endif %}

{{ page.title }}

{% if page.disabled %}

DISABLED

{% endif %} {{ page.content | safe }}

Page Attributes:

{% if settings.page_publishing_enabled %} {% endif %}
Created {{ page.created | easycms_format_datetime }}
Code (URL Name) {{ page.code }}
Author {% if page.author %} {{ page.author.name }} {% else %} {{ macros.format_result(None) }} {% endif %}
Published {{ macros.format_result(page.published) }}
Published By {% if page.published %} {{ page.published_by.name }} {% else %} {{ macros.format_result(None) }} {% endif %}
{% endblock %}