{% extends "base.html" %} {% block title %}Details: {{ page.title }} — Waikiki{% endblock %} {% block topbar_actions %}{% if not trashed %}{% include "_page_options.html" %}{% endif %}{% endblock %} {% block content %}
{% if crumbs %} {% endif %}

{{ page.title }} — Details

Links, history, and discussion for {{ page.title }}. None of this shows on the article itself.

{% if versions %}
History ({{ versions | length }}) — every saved version of this page
{% endif %} {% if suggestions %}

Proposed edits ({{ suggestions | length }})

{% for s in suggestions %}
{{ s.author }} {{ s.note or 'Proposed rewrite' }} {{ s.created_at }}
{% for line in s.diff.split('\n') %}{{ line }}
{% endfor %}
{% endfor %}
{% endif %}

Comments ({{ comments | length }})

{% for c in comments %}
{{ c.author }} {{ c.body }} {{ c.created_at }} {% if not c.resolved %}
{% else %}✓ resolved{% endif %}
{% endfor %}
{% endblock %}