{# Stats Strip Component Horizontal bar displaying key metrics Variables: - stats: List of stat objects with 'id', 'value', 'label', and optional 'title' - show_divider: Show divider after stats (default: true) - status_dot_id: Optional ID for status indicator dot - status_text_id: Optional ID for status text - time_id: Optional ID for time display #}
{% for stat in stats %}
{{ stat.value|default('0') }} {{ stat.label }}
{% endfor %} {% if show_divider|default(true) %}
{% endif %} {# Additional content from caller #} {% if caller is defined %} {{ caller() }} {% endif %} {% if status_dot_id or status_text_id %}
{% if status_dot_id %}
{% endif %} {% if status_text_id %} STANDBY {% endif %}
{% endif %} {% if time_id %}
--:--:-- UTC
{% endif %}