{{ title }}

{% if item %}
{% for col in columns %}
{{ col.label }}
{% if col.type == "badge" %} {{ item[col.key] | default("—") }} {% elif col.type == "bool" %} {{ item[col.key] | bool_icon }} {% elif col.type == "date" %} {{ item[col.key] | dateformat }} {% elif col.type == "currency" %} {{ item[col.key] | currency }} {% else %} {{ item[col.key] | default("—") }} {% endif %}
{% endfor %}
{% else %}

{{ empty_message | default("No record selected.") }}

{% endif %}