Files
ops-Gazelle/templates/revision.twig

32 lines
836 B
Twig
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{ header(object.name ~ " Revision History") }}
<div class="thin">
<div class="header">
<h2>{{ object.link|raw }} Revision History</h2>
</div>
</div>
<table cellpadding="6" cellspacing="1" border="0" width="100%" class="border">
<tr class="colhead">
<td>Revision</td>
<td>Date</td>
<td>User</td>
<td>Summary</td>
</tr>
{% for info in object.revisionList %}
<tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
<td>
<a href="{{ object.location }}&amp;revisionid={{ info.revision }}">#{{ info.revision }}</a>
</td>
<td>
{{ info.time }}
</td>
<td>
{{ info.user_id|user_url }}
</td>
<td>
{{ info.summary }}
</td>
</tr>
{% endfor %}
</table>
{{ footer() }}