mirror of
https://github.com/journeyman-cc/smeagol.git
synced 2026-04-12 18:05:06 +00:00
26 lines
765 B
HTML
26 lines
765 B
HTML
{% extends "templates/base.html" %}
|
|
{% block content %}
|
|
<div id="content" class="history">
|
|
<table>
|
|
<tr>
|
|
<th>When</th><th>What</th><th>Version</th><th>Changes</th>
|
|
</tr>
|
|
{% for entry in history %}
|
|
<tr>
|
|
<td>
|
|
{{entry.time}}
|
|
</td>
|
|
<td>
|
|
{{entry.message}}
|
|
</td>
|
|
<td>
|
|
<a href="history-version?id={{entry.id}}">Show version</a>
|
|
</td>
|
|
<td>
|
|
<a href="history-changes?id={{entry.id}}">What's changed?</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|