{% load unfold %} {% if quick_actions %}
{% include 'admin/components/section_header.html' with title='Quick Actions' icon='flash_on' icon_color='amber' %} {% include 'admin/components/action_grid.html' with actions=quick_actions cols=3 xl_cols=4 %} {% if admin_actions or user_actions or system_actions %}
{% if admin_actions %}

admin_panel_settings Admin Actions

{% for action in admin_actions %} {{ action.icon }} {{ action.title }} {% endfor %}
{% endif %} {% if user_actions %}

people User Management

{% for action in user_actions %} {{ action.icon }} {{ action.title }} {% endfor %}
{% endif %} {% if system_actions %}

settings System Tools

{% for action in system_actions %} {{ action.icon }} {{ action.title }} {% endfor %}
{% endif %}
{% endif %}
{% endif %}