Files
record/templates/asuzr/totals_table.html
Denis V. Dedkov 8cea3edb6b Таблица заказов
Доделал таблицу заказов
2015-06-16 23:33:47 +05:00

16 lines
315 B
HTML

{% extends "django_tables2/table.html" %}
{% load django_tables2 %}
{% load i18n %}
{% block table.tfoot %}
<tfoot>
{% if table.summary %}
<tr>
{% for summary in table.summary %}
<td> {{ summary }} </td>
{% endfor %}
</tr>
{% endif %}
</tfoot>
{% endblock table.tfoot %}