smeagol/resources/templates/history.html

29 lines
792 B
HTML

{% extends "templates/base.html" %}
{% block content %}
<div id="content" class="history">
<table class="music-ruled">
<tr>
<th>{% i18n when-col-hdr %}</th>
<th>{% i18n what-col-hdr %}</th>
<th>{% i18n vers-col-hdr %}</th>
<th>{% i18n change-col-hdr %}</th>
</tr>
{% for entry in history %}
<tr>
<td>S
{{entry.time}}
</td>
<td>
{{entry.message}}
</td>
<td>
<a href="version?page={{page}}&amp;version={{entry.id}}">Show version</a>
</td>
<td>
<a href="changes?page={{page}}&amp;version={{entry.id}}">What's changed since?</a>
</td>
</tr>
{% endfor %}
</table>
</div>
{% endblock %}