totals_table.html 471 B

12345678910111213141516171819202122
  1. {% extends "django_tables2/table.html" %}
  2. {% load django_tables2 %}
  3. {% load i18n %}
  4. {% block table.tfoot %}
  5. <tfoot>
  6. {% if table.summary %}
  7. <tr>
  8. {% for summary in table.summary %}
  9. <td> {{ summary }} </td>
  10. {% endfor %}
  11. </tr>
  12. {% endif %}
  13. {% if table.balance %}
  14. <tr>
  15. {% for balance in table.balance %}
  16. <td> {{ balance }} </td>
  17. {% endfor %}
  18. </tr>
  19. {% endif %}
  20. </tfoot>
  21. {% endblock table.tfoot %}