{% extends "base.html" %} {% block title %}Check-ins{% endblock %} {% block content %}
Log what's on your mind and what happened yesterday — all fields optional.
New Check-in {% if checkins %}| 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 '—' }} |
No check-ins yet. Start your first morning check-in.
{% endif %} {% endblock %}