{% extends "shopyo_base/module_base.html" %} {% set active_page = 'page' %} {% block pagehead %} {{active_page.capitalize()}} Revisions {% endblock %} {% block sidebar %} {%include 'shopyo_page/blocks/sidebar.html'%} {%endblock%} {% block content %}
Back to Page

Revisions for "{{ page.title }}" ({{ page.slug }})

{% if revisions %}
    {% for revision in revisions %}
  • Revision Date: {{ revision.revision_date.strftime('%Y-%m-%d %H:%M:%S') }}
    Language: {{ revision.lang }}
    Meta Description: {{ revision.meta_description }}
    Meta Keywords: {{ revision.meta_keywords }}

    Content:

    {{ revision.content | safe }}
  • {% endfor %}
{% else %}

No revisions found for this page.

{% endif %}
{% endblock %}