{% extends 'base.html' %} {% block title %}Asked questions{% endblock %} {# set inboxLink = 'active' #} {% block content %} {% if questions != [] %}

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

{% for question in questions %}

{% if question.from_who %} {{ question.from_who }} {% else %} {{ cfg.anonName }} {% endif %}

{{ formatRelativeTime(str(question.creation_date)) }}

{{ question.content | render_markdown }}
{% for answer in item.answers %}
{{ answer.content | render_markdown }}
{% endfor %}
{% else %}

Inbox is currently empty.

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