{% extends "user_inbox/base.html" %} {% import "macros.html" as macros %} {% block profilesection %} {% trans %}inbox - responses{% endtrans %} {% endblock %} {% block inbox_content %}
{% trans %}select:{% endtrans %} {% trans %}all{% endtrans %} | {% trans %}seen{% endtrans %} | {% trans %}new{% endtrans %} | {% trans %}none{% endtrans %}
{% if inbox_section == 'forum' %} {% trans %}mark as seen{% endtrans %} {% trans %}mark as new{% endtrans %} {% trans %}dismiss{% endtrans %} {% else %} {% trans %}remove flags/approve{% endtrans %} {% trans %}delete post{% endtrans %} {% endif %}
{% include "user_profile/reject_post_dialog.html" %}
{% for response in responses %}

"{{ response.response_title.strip()|escape}}"

{{ macros.inbox_post_snippet(response, inbox_section) }} {% for nested_response in response.nested_responses %} {{ macros.inbox_post_snippet(nested_response, inbox_section) }} {%endfor%}
{% endfor %}
{% endblock %}