{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %} {% load to_class_name from filters %} {% load paginator from filters %} {% block title %}{{object|to_class_name}} {{ object.pk|stringformat:"05d" }} - Revision History{% endblock %} {% block js %} {% include 'version_scripts.html' %} {% endblock %} {% block content %}
| Date | Version ID | User | Changes |
| {{ version.revision.date_created }} | {{ version.pk }}|{{ version.revision.pk }} | {{ version.revision.user.name }} | {% if version.changes.old is None %} {{object|to_class_name}} Created {% else %} {% include 'version_changes.html' %} {% endif %} |