{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %} {% load i18n wagtailusers_tags wagtailadmin_tags %} {% block titletag %} {% with counter_val=items|length %} {% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Assign role to 1 user {% plural %}Assign role to {{ counter }} users{% endblocktrans %} {% endwith %} {% endblock %} {% block header %} {% trans "Assign role" as header_str %} {% include "wagtailadmin/shared/header.html" with title=header_str icon="doc-empty-inverse" %} {% endblock header %} {% block items_with_access %} {% if items %}

{% trans "Are you sure you want to assign this role to these users?" %}

{% endif %} {% endblock items_with_access %} {% block items_with_no_access %} {% blocktrans trimmed asvar no_access_msg count counter=items_with_no_access|length %}You don't have permission to edit this user{% plural %}You don't have permission to edit these users{% endblocktrans %} {% include 'wagtailusers/bulk_actions/list_items_with_no_access.html' with items=items_with_no_access no_access_msg=no_access_msg %} {% endblock items_with_no_access %} {% block form_section %} {% if items %} {% trans 'Yes, assign' as action_button_text %} {% trans "No, don't assign" as no_action_button_text %} {% include 'wagtailadmin/bulk_actions/confirmation/form_with_fields.html' %} {% else %} {% include 'wagtailadmin/bulk_actions/confirmation/go_back.html' %} {% endif %} {% endblock form_section %}