{% extends "accounts/_section.html" %} {% load display_sound %} {% load paginator %} {% load util %} {% block title %}Uploaded sounds awaiting moderation{% endblock title %} {% block section_content %}

Uploaded sounds awaiting moderation {% if moderators_version %} by {{user.username}}{% endif %}

{% if show_pagination %} {% show_paginator paginator page current_page request "moderation ticket" %} {% endif %} {% for ticket, sound, comments in page.object_list %}
{% include "sounds/player_medium.html" %}

{{sound.description|striptags|safe|truncatewords:20}}


{{sound.created|date:"F jS, Y"}}
{% if not moderators_version %} Edit sound information
{% endif %} See full moderation ticket
{% with comments|first as last_comment %} {% ifnotequal last_comment.sender_id user.id %}
The moderator handling this upload is waiting you to answer his last comment on the ticket ({{ last_comment.created|timesince}} ago). {% endifnotequal %} {% endwith %}
{% comment %}

Last comment{{ comments|length|pluralize}} on moderation ticket:

{% endcomment %} {% empty %}

Currently, {% if own_page %} you don't {% else %} {{user.username}} doesn't {% endif %} have any uploaded sounds awaiting moderation.

{% endfor %} {% if show_pagination %} {% show_paginator paginator page current_page request "moderation ticket" %} {% endif %} {% if moderators_version %}
{% endif %} {% endblock %}