{{ 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 %}| {{ t('User') }} | {% for period in dashboard.periods %}{{ t(period.meal_type|capitalize) }} | {% endfor %}
|---|---|
| {{ user.username }} {% if user.is_admin %}{{ t('admin') }}{% endif %} | {% for period in dashboard.periods %} {% set resp = user.responses[period.meal_type] %}
{{ 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 %}
|
{% endfor %}