{% extends "tickets/_section.html" %} {% load util %} {% load paginator %} {% block head %} {{ block.super }} {% endblock head %} {% block title %} Moderation {% endblock title %} {% block section_content %}
{% comment %}

Assigned tickets {% if moderator_tickets_count > 0 %} ({{moderator_tickets_count}}) {% endif %}


{% endcomment %} {% if not moderator_tickets_count %}

You've finished all the sounds in your queue.

Back to moderation home {% else %} select all | select other sounds from same user {% endif %}

{% for ticket in page.object_list %} {% if ticket.sound %} {% endif %} {% endfor %}
{{ticket.sound.original_filename|truncate_string:20}} {{ticket.sender.username | truncatechars:12}} {{ticket.created|date:"d/m/Y" }} {{ticket.status|capfirst}}
{% if show_pagination %} {% show_paginator paginator page current_page request "ticket" %} {% endif %}


{% csrf_token %}
{{ mod_sound_form.as_p }}
{% include 'tickets/moderation_options.html' %}

{{ msg_form.as_p }}


{% endblock section_content %}