Current body metrics
{% for user in summary.users if user.id == 'john' %}{{ user.current_weight_lbs if user.current_weight_lbs is not none else '—' }}{% if user.current_weight_lbs is not none %} lb{% endif %}
{{ '%.1f'|format(user.current_bmi) if user.current_bmi is not none else '—' }}
- Waist {{ user.latest_measurements.waist_inches or '—' }} in
- Chest {{ user.latest_measurements.chest_inches or '—' }} in
- Hips {{ user.latest_measurements.hip_inches or '—' }} in
- Neck {{ user.latest_measurements.neck_inches or '—' }} in
No body measurements logged yet.
{% endif %} {% endfor %}