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

Check-ins

New Check-in {% if checkins %} {% for c in checkins %} {% endfor %}
Date Feeling Weight Calories Steps 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.

{% endif %} {% endblock %}