{% extends "signalbox:admin/base_site.html" %} {% block content_title %}Revisions history{% endblock %} {% load markup humanize %} {% block content %}
| User | Date | Comment | Type |
|---|---|---|---|
| {{i.user}} | {{i.date_created}} | {{i.comment}}
{% for j in i.version_set.all %}
{{j.serialized_data}}
{% endfor %}
|
|