{% extends "admin/base.html" %} {% block title %}Historikk – {{ post.title }}{% endblock %} {% block content %}

Historikk: {{ post.title }}

← Tilbake til editoren

{% if not entries %}

Ingen historikk ennå.

{% endif %}
    {% for e in entries %} {{ e.subject }} · {{ e.author }} · {{ e.sha[:7] }} {% endfor %}
{% if diff is not none %}

Endring {{ sha[:7] }}

{# Diffen vises linje for linje slik at + og − kan farges uten å tolke innholdet som HTML. #}
{% for line in diff.splitlines() %}{{ line }}
{% endfor %}
{% endif %} {% endblock %}