{% extends "flagit/flagit_base.html" %} {% from "flagit/includes/macros.html" import filter_dropdown %} {% block flagged_items %} {% for object in objects %}
  • {{ _('Flagged {t} (Reason: {r})')|f(t=object.content_type, r=object.get_reason_display()) }}

    {% if object.notes %}

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

    {% 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 %}
  • {% else %}

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

    {% endfor %} {% endblock %} {% block filter_dropdown %} {{ filter_dropdown("reason-filter-form", "flagit-reason-filter", "Filter by reason:", "reason", "All reasons", reasons, selected_reason) }} {% endblock %}