{% extends "user_inbox/base.html" %} {% import "macros.html" as macros %} {% block profilesection %} {% trans %}inbox - moderation queue{% endtrans %} {% endblock %} {% block inbox_content %} {% if request.user.new_response_count %}

{% trans %}Clear new notifications{% endtrans %}

{% endif %}
{% for message in messages %}{# messages are grouped by question, using the "nested_messages" #}

"{{ message.title.strip()|escape}}"

{{ macros.inbox_message_snippet(message) }}
{# "nested" messages are further response messages to the same question #} {% for followup_message in message.followup_messages %}
{{ macros.inbox_message_snippet(followup_message) }}
{% endfor %} {% endfor %}
{% endblock %}