{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %} {% load i18n wagtailusers_tags wagtailadmin_tags %} {% block titletag %} {% if items|length == 1 %} {% blocktrans trimmed with snippet_type_name=model_opts.verbose_name %}Unapprove {{ snippet_type_name }}{% endblocktrans %} - {{ items.0.item }} {% else %} {% blocktrans trimmed with count=items|length|intcomma %}Unapprove {{ count }} comments{% endblocktrans %} {% endif %} {% endblock %} {% block header %} {% trans "Unapprove" as unapprove_str %} {% if items|length == 1 %} {% include "wagtailadmin/shared/header.html" with title=unapprove_str subtitle=items.0.item icon=header_icon only %} {% else %} {% include "wagtailadmin/shared/header.html" with title=unapprove_str subtitle=model_opts.verbose_name_plural|capfirst icon=header_icon only %} {% endif %} {% endblock header %} {% block items_with_access %} {% if items %} {% if items|length == 1 %}

{% blocktrans trimmed with snippet_type_name=model_opts.verbose_name %}Unapprove this {{ snippet_type_name }}?{% endblocktrans %}

{% else %}

{% blocktrans trimmed with count=items|length|intcomma %}Unapprove {{ count }} selected comments?{% endblocktrans %}

{% endif %} {% endif %} {% endblock items_with_access %} {% block items_with_no_access %} {% if items_with_no_access|length == 1 %} {% trans "You don't have permission to unapprove this comment" as no_access_msg %} {% else %} {% trans "You don't have permission to unapprove these comments" as no_access_msg %} {% endif %} {% include 'wagtailsnippets/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, unapprove" as action_button_text %} {% trans "No, go back" 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 %}