totals_table.html 315 B

123456789101112131415
  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. </tfoot>
  14. {% endblock table.tfoot %}