{% extends "flagit/flagit_base.html" %} {% from "flagit/includes/macros.html" import filter_dropdown %} {% block title %}{{ _('Topic and Tag Moderation Tool') }} | {{ pgettext('site_title', 'Mozilla Support') }}{% endblock %} {% block flagged_queue_header %}

{{ _('Topic and Tag Moderation Tool') }}

{% endblock %} {% block flagged_items %} {% for object in objects %}
  • {{ _('Flagged {t}')|f(t=object.content_type) }}

    {% if object.assignee %} {{ _('Assigned: {username}')|f(username=object.assignee.username) }} {% else %} {{ _('Unassigned') }} {% endif %}
    {% if object.notes %} {% if object.content_type.model == 'question' %}

    {{ _('Additional notes:') }}  {{ object.notes }}

    {% else %}

    {{ _('Additional notes:') }} {{ object.notes }}

    {% endif %} {% endif %}
    {% if object.content_object %} {% include 'flagit/includes/flagged_%s.html' % object.content_type.model %} {% else %}

    {{ _('{t} with id={id} no longer exists.')|f(t=object.content_type, id=object.object_id) }}

    {% endif %}


    {{ _('Update Status:') }}

    {% csrf_token %} {{ _('Please wait...') }}
  • {% else %}

    {{ _('There is no content pending moderation.') }}

    {% endfor %} {{ objects|paginator }} {% endblock %} {% block filter_dropdown %} {{ filter_dropdown( form_id='product-filter-form', select_id='flagit-product-filter', label='Filter by product:', name='product', default_option='All products', options=products, selected_filter=selected_product ) }} {{ filter_dropdown( form_id='assignee-filter-form', select_id='flagit-assignee-filter', label='Filter by assignee:', name='assignee', default_option='All assignees', options=assignees, selected_filter=selected_assignee ) }}
    {% csrf_token %}
    {% csrf_token %}
    {% endblock %} {# Hide the deactivation log on content moderation #} {% block deactivation_log %} {% endblock %}