lexeme_history_table.html 498 Bytes
{% load i18n %}
<table class="transaction-table">
    <tr>
        <th>{% trans 'attribute' %}</th>
        <th>{% trans 'before' %}</th>
        <th>{% trans 'after' %}</th>
    </tr>
    {% include "history_row.html" with rows=table.rows %}
    {% for header, lip_rows in table.lip_tables %}
        <tr>
            <th colspan="3" class="lip-header">{% trans 'inflection' %} {{ header }}:</th>
        </tr>
        {% include "history_row.html" with rows=lip_rows %}
    {% endfor %}
</table>