{% extends "cranefly/layout.html" %} {% import "cranefly/macros.html" as macros with context %} {% block title %}{{ macros.page_title(title=(_("Post #%(post)s Changelog") % {'post': post.pk}),parent=thread.name) }}{% endblock %} {% block breadcrumb %}{{ super() }}
  • {% trans %}Private Threads{% endtrans %}
  • {{ thread.name }}
  • {% trans post=post.pk %}Post #{{ post }} Changelog{% endtrans %}
  • {% trans date=change.date|reltimesince|low %}Edit from {{ date }}{% endtrans %} {%- endblock %} {% block container %}
    {% if message %}
    {{ macros.draw_message(message) }}
    {% endif %} {% if change.reason %}

    {{ change.reason }}

    {% endif %} {% if acl.threads.can_edit_reply(user, forum, thread, post) or prev or next %}
    {{ pager() }} {% if user.is_authenticated() and acl.threads.can_make_revert(forum, thread) %}
  • {%- endif %} {% endif %}
    {% for line in diff %}{% if line[0] != "?" %} {% set l = l + 1 %} {% endif %}{% endfor %}
    {{ l }}. {% if line[2:] %}{{ line[2:] }}{% else %} {% endif %}
    {% if prev or next %}
    {{ pager() }}
    {% endif %} {% endblock %} {% macro pager() %} {% if prev or prev %} {% endif %} {% endmacro %}