| 12345678910111213141516171819202122 |
- {% 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 %}
- {% if table.balance %}
- <tr>
- {% for balance in table.balance %}
- <td> {{ balance }} </td>
- {% endfor %}
- </tr>
- {% endif %}
- </tfoot>
- {% endblock table.tfoot %}
|