mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
32 lines
836 B
Twig
32 lines
836 B
Twig
{{ 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 }}&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() }}
|