{% load cabinet_tags %}

{{ table.title }}

{% if table.subtitle %}

{{ table.subtitle }}

{% endif %}
{% if table.primary_summary or table.secondary_summary %}
{% if table.secondary_summary %}{{ table.secondary_summary }}{% endif %} {% if table.primary_summary %}{{ table.primary_summary }}{% endif %}
{% endif %}
{% if table.rows %}
{% for column in table.columns %} {% endfor %} {% for row in table.rows %} {% for column in table.columns %} {% endfor %} {% endfor %} {% if table.summary_row %} {% for column in table.columns %} {% endfor %} {% endif %}
{{ column.label }}
{% if column.bold %}{{ row|get_item:column.key }}{% else %}{{ row|get_item:column.key }}{% endif %}
{{ table.summary_row|get_item:column.key }}
{% else %}

{{ table.empty_message }}

{% endif %}