{% extends 'base.html' %} {% block title %}Inbox {% if len(questions) > 0 %}({{ len(questions) }}){% endif %}{% endblock %} {% set inboxLink = 'active' %} {% block content %} {% if questions != [] %} {% for question in questions %}
{% if question.from_who %}{{ question.from_who }}{% else %}Anonymous{% endif %}
{{ formatRelativeTime(str(question.creation_date)) }}
{{ question.content | render_markdown }}
{% endfor %} {% else %}

Inbox is currently empty.

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