{% if results %}
{% for day, questions in results|groupby('updated_day') %}
{{ day }}
{% for question in questions %}
{% include 'question.html' %}
{% endfor %}
{% endfor %}
{% else %}
{% if message %}
{{ message }}
{% else %}
{{ _('No active questions') }}
{{ _("Go to the New tab to answer some questions. We'll keep track of them here.") }}
{% endif %}
{% endif %}