+ {% for action in _actions %}
+ {% if action.get('visible', true) %}
+ {% set _variant = action.get('variant', 'secondary') %}
+ {% set _classes = 'bg-brand-600 text-white hover:bg-brand-700 focus-visible:ring-brand-500' if _variant == 'primary' else ('bg-red-600 text-white hover:bg-red-700 focus-visible:ring-red-500' if _variant == 'danger' else 'border border-slate-300 bg-white text-slate-700 hover:bg-slate-50 hover:text-slate-950 focus-visible:ring-brand-500') %}
+
+ {{ action.get('label', '') }}
+
+ {% endif %}
+ {% endfor %}
+