mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
//TODO Rather than have seperate asset templates, convert 'id' into a template variable
18 lines
609 B
HTML
18 lines
609 B
HTML
{% 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 %}
|
|
<div class="col-sm-12">
|
|
<h3><a href="{{ object.get_absolute_url }}">{{object|to_class_name}} {{ object.pk|stringformat:"05d" }}</a> - Revision History</h3>
|
|
{% include 'partials/version_history_table.html' %}
|
|
<div>{% paginator %}</div>
|
|
</div>
|
|
{% endblock %}
|