{{ t("Today's Meals") }}

{{ t('◀ Prev') }} {{ viewing_date.isoformat() }} {{ t('Next ▶') }} {% if viewing_date != today %} Today {% endif %}
{% if not dashboard.users %}

{{ t('No users yet.') }}

{% else %}
{% for period in dashboard.periods %} {% endfor %} {% for user in dashboard.users %} {% for period in dashboard.periods %} {% set resp = user.responses[period.meal_type] %} {% endfor %} {% endfor %}
{{ t('User') }}{{ t(period.meal_type|capitalize) }}
{{ user.username }} {% if user.is_admin %}{{ t('admin') }}{% endif %} {{ t('Home') if resp.status == 'yes' else (t('Out') if resp.status == 'no' else t('—')) }} {% if resp.changed_at %}
↻ {{ resp.changed_at[11:16] }}
{% endif %}
{% endif %}