{% extends "base.html" %} {% load markup wiki_tags tagging_tags %} {% block content_title %} {% ifnotequal page.title 'index' %} {{ page.title|title }} {% endifnotequal %} {% endblock %} {% block vz_wiki_page_menu %} {% if perms.page.can_change and page.is_editable and not page.is_checked_out %}
  • Edit This Page
  • {% endif %} {% if page.is_checked_out %} {% ifequal page.who_checked_out user %}
  • Continue Editing Page
  • {% endifequal %} {% endif %}
  • Page History
  • {% endblock %} {% block content %}
    {% tags_for_object page as tags_list %}

    Tagged: {% for tag in tags_list %} {% endfor %}

    {% with page.latest_revision as latest_revision %}

    Created on: {{ page.created_on|date }}. Current version is {{ latest_revision.number }}.

    Page is {% if not page.is_editable %}not{% endif %} editable.

    {% if page.is_checked_out %}

    Page is currently checked out by {{ page.who_checked_out }}.

    {% endif %}
    {{ latest_revision.body|sanitize|wiki_link|markdown }} {% endwith %} {% endblock %}