{% extends "base.html" %} {% block title %}{{ page.title }} — Wiki{% endblock %} {% block content %} {% include "wiki/_layout.html" %}

{{ page.title }}

History {% if current_user.is_authenticated %} {% if not page.is_locked or current_user.is_admin %} Edit {% else %} {% endif %} {% endif %} {% if current_user.is_authenticated and current_user.is_admin %} {% endif %}
Last edited {{ page.updated_at.strftime('%Y-%m-%d %H:%M UTC') }} {% if page.updated_by %}by {{ page.updated_by.username }}{% endif %} · history · {{ page.view_count or 0 }} view{{ '' if (page.view_count or 0) == 1 else 's' }} {% if page.is_locked %}· Locked{% endif %}
{{ body_html }}
{% endblock %}