{% extends "wakawaka/base.html" %} {% load wakawaka_tags %} {% load i18n %} {% block extrahead %} {{ block.super }} {# Don't let search engines scan this old revision #} {% if rev.is_not_current %} {% endif %} {# Add support for the Universal Edit Button #} {% if perms.wakawaka.change_wikipage %} {% endif %} {% endblock %} {% block title %} {{ page.slug }} {% endblock %} {% block content %}

{{ page.slug }}

{% if rev.is_not_current %}

{% trans "You are viewing an older revision!" %} {% trans "See the latest version" %}

{% endif %}
{% include "wakawaka/page_content.html" %}
{% spaceless %}
{{ page.slug }} {% blocktrans with page.current.creator as creator and rev.modified|date:_("DATETIME_FORMAT") as modified %} Recently modified by {{ creator }}: {{ modified }} {% endblocktrans %} ({% trans "History" %}) {% if perms.wakawaka.change_wikipage %} {% trans "Edit" %} {% endif %}
{% endspaceless %} {% endblock %}