Blame view

history/templates/pattern_history_table.html 506 Bytes
janek37 authored
1
{% load i18n %}
janek37 authored
2
3
<table class="transaction-table">
    <tr>
janek37 authored
4
5
6
        <th>{% trans 'attribute' %}</th>
        <th>{% trans 'before' %}</th>
        <th>{% trans 'after' %}</th>
janek37 authored
7
    </tr>
janek37 authored
8
    {% include "history_row.html" with rows=table.rows %}
janek37 authored
9
10
    {% for header, ending_rows in table.ending_tables %}
        <tr>
janek37 authored
11
            <th colspan="3" class="ending-header">{% trans 'ending' %} {{ header }}:</th>
janek37 authored
12
        </tr>
janek37 authored
13
        {% include "history_row.html" with rows=ending_rows %}
janek37 authored
14
15
    {% endfor %}
</table>