{% extends "user_inbox/base.html" %} {% import "macros.html" as macros %} {% block profilesection %} {% trans %}notifications{% endtrans %} {% endblock %} {% block inbox_content %} {% if notifications %}
{% trans %}mark seen{% endtrans %} | {% trans %}delete{% endtrans %} {% trans %}select:{% endtrans %} {% trans %}all{% endtrans %} | {% trans %}none{% endtrans %}
{% endif %}
{% for message in notifications %}{# 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 %}
{% trans %}There are no notifications.{% endtrans %}
{% endblock %}