Current body metrics
{{ user.display_name }} {% if user.is_stub %}stub{% endif %}
{{ user.current_weight_lbs if user.current_weight_lbs is not none else '—' }}{% if user.current_weight_lbs is not none %} lb{% endif %}
BMI: {{ '%.1f'|format(user.current_bmi) if user.current_bmi is not none else 'Not set yet' }}
System: {{ user.measurement_system }}
{% if user.latest_measurements %}Waist {{ user.latest_measurements.waist_inches or '—' }} in · Hips {{ user.latest_measurements.hip_inches or '—' }} in · Chest {{ user.latest_measurements.chest_inches or '—' }} in · Neck {{ user.latest_measurements.neck_inches or '—' }} in
{% else %}No body measurements logged yet.
{% endif %}