2013-10-03 17:58:07 +03:00
|
|
|
{% extends 'layout.html' %}
|
|
|
|
{% block body %}
|
|
|
|
|
2014-09-05 00:35:28 +03:00
|
|
|
<h2>History for <strong>{{ name }}</strong></h2>
|
|
|
|
<div class="pull-right">
|
|
|
|
<a href="{{ url_for('wiki.commit', name=name, sha=old) }}" class="btn btn-default btn-sm">View Old</a>
|
|
|
|
<a href="{{ url_for('wiki.commit', name=name, sha=new) }}" class="btn btn-info btn-sm">View New</a>
|
|
|
|
</div>
|
|
|
|
<p>
|
|
|
|
<a class="btn btn-default btn-sm" href="{{ url_for('wiki.history', name=name) }}">Back to History</a>
|
|
|
|
</p>
|
|
|
|
{{ diff|safe }}
|
|
|
|
<p>
|
|
|
|
<a class="btn btn-default btn-sm" href="{{ url_for('wiki.history', name=name) }}">Back to History</a>
|
|
|
|
</p>
|
2013-10-03 17:58:07 +03:00
|
|
|
{% endblock %}
|