{% extends "base.html" %} {% block title %}Check-in — WeightTracker{% endblock %} {% block content %}

📋 History

{{ checkins | length }} entries
{% if checkins %}
{% for c in checkins %} {% include "partials/checkin_row.html" %} {% endfor %}
Date Weight BMI Notes
{% else %}
⚖️

No check-ins yet

Enter your weight above to start tracking.

{% endif %}
{% endblock %}