{% extends "admin/cards/base.html" %} {% block content %}
{% if headers %} {% for header in headers %} {% endfor %} {% endif %} {% for row in rows %} {% for cell in row %} {% endfor %} {% endfor %} {% if footers %} {% if footers[0] is sequence and footers[0] is not string %} {% for footer_row in footers %} {% for cell in footer_row %} {% endfor %} {% endfor %} {% else %} {% for footer in footers %} {% endfor %} {% endif %} {% endif %}
{{ header }}
{{ cell }}
{{ cell }}
{{ footer }}
{% endblock %}