{% load i18n %} {% if not subwidget %} {% if not widget.attrs.sbadmin_hide_label %} {% if widget.form_field.label %} {% endif %} {% endif %} {% endif %}
{% for section in widget.permission_sections %}
{{ section.selected_count }}/{{ section.permissions_count }}
{% if section.has_standard_permissions %}
{% for action in widget.standard_action_headers %}
{{ action.label }}
{% endfor %}
{% for model in section.models %} {% if model.has_standard_permissions %}
{{ model.model_verbose }}
{% for cell in model.standard_cells %}
{% if cell.permission %} {% else %} {% endif %}
{% endfor %}
{% endif %} {% endfor %}
{% endif %} {% if section.has_custom_permissions %}
{% trans "Custom permissions" %} {% trans "Allowed" %}
{% for model in section.models %} {% for perm in model.custom_perms %}
{% if perm.help_text %}

{{ perm.help_text }}

{% endif %}
{% endfor %} {% endfor %}
{% endif %}
{% endfor %}
{% include 'sb_admin/widgets/includes/help_text.html' %}