{% load i18n unfold %}
{% if title %}

{{ title }}

{% endif %}
{% if table.headers %} {% for header in table.headers %} {% endfor %} {% endif %} {% if table.rows %} {% for row in table.rows %} {% for cell in row.cols|default:row %} {% endfor %} {% if "table" in row %} {% endif %} {% endfor %} {% endif %}
{% if header|is_dict %} {{ header.content }} {% else %} {{ header|capfirst }} {% endif %}
{% if row.table.rows|length > 0 %}
{% if forloop.first and row.table.rows|length > 0 and row.table.collapsible %}
expand_more
{% endif %}
{% if cell|is_dict %} {{ cell.content}} {% else %} {{ cell }} {% endif %}
{% else %} {% if cell|is_dict %} {{ cell.content }} {% else %} {{ cell }} {% endif %} {% endif %}
{% if row.table.collapsible %}
{% endif %} {% if row.table.headers %} {% for header in row.table.headers %} {% endfor %} {% endif %} {% for nested_row in row.table.rows %} {% for cell in nested_row %} {% endfor %} {% endfor %}
{% if header|is_dict %} {{ header.content }} {% else %} {{ header }} {% endif %}
{% if cell|is_dict %} {{ cell.content }} {% else %} {{ cell }} {% endif %}
{% if not table.rows %}

{% trans "No data" %}

{% endif %}