{% load static django_grid_view %}
{% if artifact.spec.title %}

{{ artifact.spec.title }}

{% endif %} {% for block in layout_blocks %} {% if block == "kpis" and artifact.kpis %}
{% elif block == "chart" %} {% for chart in chart_payload %}
{% include "django_grid_view/partials/chart_body.html" %}
{% endfor %} {% elif block == "table" and artifact.table %} {% render_simple_table artifact.table %} {% elif block == "cards" and artifact.spec.cards %} {% for card_spec in artifact.spec.cards %} {% render_card_grid card_spec artifact.rows %} {% endfor %} {% elif block == "card_groups" and artifact.spec.tabs and artifact.spec.card_groups %} {% render_card_groups artifact.spec.tabs artifact.rows artifact.spec.card_groups %} {% endif %} {% endfor %}
{% if load_assets %} {% grid_view_bundle %} {% endif %}