{% extends "base.html" %} {% block title %}Dashboard — Meal Tracker{% endblock %} {% block content %}

{% if history_mode %}History — {{ viewing_date.isoformat() }}{% else %}Today's Meals{% endif %}

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

No registered users yet. Ask household members to register!

{% else %}
{% for period in dashboard.periods %} {% endfor %} {% if is_admin %} {% endif %} {% for user in dashboard.users %} {% set is_me = user.id == current_user_id %} {% for period in dashboard.periods %} {% set resp = user.responses[period.meal_type] %} {% endfor %} {% if is_admin and not is_me and not user.is_admin %} {% elif is_admin %} {% endif %} {% endfor %}
User{{ period.meal_type|capitalize }}
{{ user.username }} {% if user.is_admin %}admin{% endif %} {% if is_me %}you{% endif %} {% if is_me and viewing_date >= today %}
{% if resp.changed_at %}
↻ {{ resp.changed_at[11:16] }}
{% endif %} {% else %} {{ 'Home' if resp.status == 'yes' else ('Out' if resp.status == 'no' else '—') }} {% endif %}
{% endif %}
⚙ Account Settings

Delete My Account

{% if is_admin %}

Delete Household

This will remove all users and all data in this household.

{% endif %}
{% endblock %}