{# Empty State Component Display when no data is available Variables: - icon: Optional SVG icon (default: generic empty icon) - title: Main message (default: "No data") - description: Optional helper text - action_text: Optional button text - action_onclick: Optional button onclick handler - action_href: Optional button link #}
{% if icon %} {{ icon|safe }} {% else %} {% endif %}
{{ title|default('No data') }}
{% if description %}
{{ description }}
{% endif %} {% if action_text %}
{% if action_href %} {{ action_text }} {% elif action_onclick %} {% endif %}
{% endif %}