{% extends "admin/base.html" %} {% block title %}Version History - {{ content.title }}{% endblock %} {% block content %}
{% if versions | length > 0 %}
Compare: vs
{% for v in versions %} {% endfor %}
Version Title Saved By Date Summary
v{{ v.version_number }} {% if loop.first %}current{% endif %} {{ v.title | truncate(length=40) }} {{ v.created_by_username | default(value="Unknown") }} {{ v.created_at | format_date(format="%b %d, %Y %H:%M") }} {{ v.changes_summary }} View

{{ total_versions }} version{% if total_versions != 1 %}s{% endif %} saved

{% else %}

No version history yet

Version history will appear here after you make edits to this {{ content_type }}.

{% endif %}
{% endblock %}