{% load static %} {% with id=widget.attrs.id %}
{% if widget.staff_tier_preview %}
{{ MS_TRANS.staff_tier_preview|default:"Staff Tier Preview" }}

{{ MS_TRANS.staff_tier_preview_caption|default:"Read-only summary based on staff access, scope, and selected permissions." }}

{% endif %}
{% for app_label, app_data in widget.grouped_perms.items %}
{% for model_name, model_data in app_data.models.items %}
{{ model_data.name }}
{% for option in model_data.permissions %}
{% if option.help_text %}
{{ option.help_text }}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}
{% endwith %}