{% extends "base.html" %} {% block title %}Check-ins{% endblock %} {% block content %}

Morning Check-ins

Log what's on your mind and what happened yesterday — all fields optional.

New Check-in {% if checkins %} {% for c in checkins %} {% endfor %}
Date Feeling Weight Calories (yesterday) Steps (yesterday) Sleep
{{ c.date }} {{ c.feeling or '—' }} {{ c.weight_lb or '—' }} {{ c.calories or '—' }} {{ c.steps or '—' }} {{ c.sleep_hours or '—' }}
{% else %}

No check-ins yet. Start your first morning check-in.

{% endif %} {% endblock %}