{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %} {% load i18n wagtailadmin_tags %} {% block titletag %}{% blocktranslate trimmed count counter=items|length %}Test 1 server{% plural %}Test {{ counter }} servers{% endblocktranslate %}{% endblock %} {% block header %} {% trans "Delete" as del_str %} {% include "wagtailadmin/shared/header.html" with title=del_str icon="doc-empty-inverse" %} {% endblock header %} {% block items_with_access %} {% if items %}

{% trans "Are you sure you want to test these servers?" %}

{% endif %} {% endblock items_with_access %} {% block items_with_no_access %} {% blocktranslate trimmed asvar no_access_msg count counter=items_with_no_access|length %}You don't have permission to test this server{% plural %}You don't have permission to test these servers{% endblocktranslate %} {% include 'mailer/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, test servers' as action_button_text %} {% trans "No, don't test servers" as no_action_button_text %} {% include 'wagtailadmin/bulk_actions/confirmation/form.html' %} {% else %} {% include 'wagtailadmin/bulk_actions/confirmation/go_back.html' %} {% endif %} {% endblock form_section %}