{% extends "tickets/_section.html" %} {% block title %} Sound Moderation {% endblock title %} {% block section_content %}

Assign Sounds

{% if new_sounds_users %}

Users with new sounds

{% for user, new_count, time in new_sounds_users %}

{{ user.username }}
{{ new_count }} new sounds, {{ time }} day{{ time|pluralize }} in queue
Assign to me

{% endfor %}

{% else %}

No new sounds

There are currently no new sounds to be moderated. {% endif %} {% if tardy_moderator_tickets %}

Sounds by tardy moderators {% if tardy_moderator_tickets_count > 5 %} (only showing first 5, {{tardy_moderator_tickets_count}} in total, see all) {% endif %}

Sounds in this list have already been assigned to a moderator but have still not been moderated. Feel free to moderate any of these sounds.

{% for ticket in tardy_moderator_tickets %}
{% include 'tickets/ticket_sound.html' %}
{% if ticket.assignee.id != request.user.id %}

Assign to me

{% endif %}
{% endfor %}
{% endif %} {% if tardy_user_tickets %}

Sounds by tardy users {% if tardy_user_tickets_count > 5 %} (only showing first 5, {{tardy_user_tickets_count}} in total, see all) {% endif %}

Sounds in this list belong to users that are not responding to moderators requests.

{% for ticket in tardy_user_tickets %}
{% include 'tickets/ticket_sound.html' %}
{% if ticket.assignee.id != request.user.id %}

Assign to me

{% endif %}
{% endfor %} {% endif %} {% if unsure_tickets %}

Returned

{% for ticket in unsure_tickets %} {% include 'tickets/ticket_sound.html' %}

Assign to me

{% endfor %}
{% endif %} {% endblock section_content %}