{% extends 'base.html' %} {% block title %}Inbox ({{ len(questions) }}){% 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 }}

{% endfor %} {% else %}

Inbox is currently empty.

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