Таблица заказов

Доделал таблицу заказов
This commit is contained in:
2015-06-16 23:33:47 +05:00
parent 6f054bef1f
commit 8cea3edb6b
4 changed files with 45 additions and 65 deletions

View File

@@ -0,0 +1,15 @@
{% 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 %}