2013-10-03 17:58:07 +03:00
|
|
|
{% extends 'layout.html' %}
|
|
|
|
{% block body %}
|
|
|
|
|
|
|
|
<h2>History for <strong>{{ name }}</strong></h2>
|
2013-10-15 23:32:17 +03:00
|
|
|
<div class="pull-right">
|
|
|
|
<a href="/_commit/{{ old }}/{{ name }}" class="btn btn-default btn-sm">View Old</a>
|
|
|
|
<a href="/_commit/{{ new }}/{{ name }}" class="btn btn-info btn-sm">View New</a>
|
|
|
|
</div>
|
2013-10-03 17:58:07 +03:00
|
|
|
<p>
|
2013-10-15 23:32:17 +03:00
|
|
|
<a class="btn btn-default btn-sm" href="/_history/{{ name }}">Back to History</a>
|
2013-10-03 17:58:07 +03:00
|
|
|
</p>
|
|
|
|
|
2013-10-15 23:32:17 +03:00
|
|
|
|
2013-10-03 17:58:07 +03:00
|
|
|
{{ diff|safe }}
|
|
|
|
<p></p>
|
|
|
|
|
|
|
|
<p>
|
2013-10-15 23:32:17 +03:00
|
|
|
<a class="btn btn-default btn-sm" href="/_history/{{ name }}">Back to History</a>
|
2013-10-03 17:58:07 +03:00
|
|
|
</p>
|
|
|
|
{% endblock %}
|