{# Reusable info box component #} {# Usage: {% include 'components/info_box.html' %} #} {# Required: info_items - list of dicts with 'label' and 'value' keys #}
{% for item in info_items %} {% endfor %}
{{ item.label }}: {% if item.badge %} {{ item.value }} {% else %} {{ item.value }} {% endif %}