{% for head in table.heads %}
{% include 'avishan/panel/components/table_head.html' with table_head=head %}
{% endfor %}
{% for item in table.items %}
{% for data in item.raw_data %}
{% include 'avishan/panel/components/table_item.html' with table_item=item %}
{% endfor %}
{% endfor %}