{% extends 'base.html' %} {% block title %}{{ _('Inbox') }} {% if len(questions) > 0 %}({{ len(questions) }}){% endif %}{% endblock %} {% set inboxLink = 'active' %} {% block additionalHeadItems %} {% endblock %} {% block content %} {% if questions != [] %}

{{ len(questions) }} {{ _('question(s)') }}

{% for question in questions %}
{% if question.from_who %} {{ render_markdown(question.from_who, fromWho=True) }} {% else %} {{ cfg.anonName }} {% endif %}
{# reserved for version 1.6.0 or later {% if question.private %} Private {% endif %} #} {{ formatRelativeTime(str(question.creation_date)) }}
{% if question.cw %}

{{ question.cw }}

{{ question.content | render_markdown }}
{% else %} {{ question.content | render_markdown }} {% endif %}
{% if not cfg.noDeleteConfirm %} {% else %} {% endif %}
{% if not cfg.noDeleteConfirm %} {% endif %}
{% endfor %}
{% else %}

{{ _('Inbox is currently empty.') }}

{% endif %} {% endblock %} {% block scripts %} {% endblock %}