{% macro kpi_grid(items) -%}
{% for item in items %}
{{ item.label }} {{ item.value }} {% if item.subtitle %}{{ item.subtitle }}{% endif %}
{% endfor %}
{%- endmacro %} {% macro chart_container(id, title='', caption='') -%}
{% if title or caption %}
{% if title %}

{{ title }}

{% endif %} {% if caption %}

{{ caption }}

{% endif %}
{% endif %}
{{ caller() if caller else '' }}
{%- endmacro %} {% macro recent_activity(items, title='Recent Activity') -%}

{{ title }}

    {% for item in items %}
  1. {{ item.title }} {% if item.detail %}

    {{ item.detail }}

    {% endif %} {% if item.time %}{% endif %}
  2. {% endfor %}
{%- endmacro %} {% macro task_list(items, title='Tasks') -%}

{{ title }}

{%- endmacro %} {% macro notification_panel(items, title='Notifications') -%}

{{ title }}

{% for item in items %}
{% if item.title %}{{ item.title }}{% endif %} {{ item.message }}
{% endfor %}
{%- endmacro %}