{% extends "admin/base.html" %} {% block title %}Version History - {{ content.title }}{% endblock %} {% block content %}
| 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
Version history will appear here after you make edits to this {{ content_type }}.