realms-wiki/realms/templates/wiki/compare.html

19 lines
649 B
HTML
Raw Normal View History

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">
2013-12-04 00:28:16 +02:00
<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>
2013-10-15 23:32:17 +03:00
</div>
2013-10-03 17:58:07 +03:00
<p>
2013-12-04 00:28:16 +02:00
<a class="btn btn-default btn-sm" href="{{ url_for('wiki.history', name=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>
2013-12-04 00:28:16 +02:00
<a class="btn btn-default btn-sm" href="{{ url_for('wiki.history', name=name) }}">Back to History</a>
2013-10-03 17:58:07 +03:00
</p>
{% endblock %}