{% extends "base.html" %} {% from "macros.html" import diagram with context %} {% block title %}Body fat{% endblock %} {% block content_title %}Body fat{% endblock %} {% block content %} {{ diagram("bodyfat", intervals, current) }}
Date | {% for name, description in [ ("Body fat (3)", "Body fat percentage using Jackson-Pollock 3-site skinfold formula"), ("Body fat (7)", "Body fat percentage using Jackson-Pollock 7-site skinfold formula"), ("Chest", "Diagonal fold, halfway between armpit and nipple"), ("Abdominal", "Vertical fold, 2 cm to the right of navel"), ("Tigh", "Vertical fold, halfway between hipbone and kneecap"), ("Tricep", "Vertical fold, halfway between shoulder and elbow"), ("Subscapular", "Diagonal fold, directly below shoulder blade"), ("Suprailiac", "Diagonal fold, directly above hip bone"), ("Midaxillary", "Vertical fold, directly below armpit"), ] %}
{{ name }}
|
{% endfor %}
||||||||
---|---|---|---|---|---|---|---|---|---|
{{ datetime.date() }} | {{ fat3|round(2)|replace('nan', '-') }} | {{ fat7|round(2)|replace('nan', '-') }} | {{ chest|int }} | {{ abdominal|int }} | {{ tigh|int }} | {{ tricep|int }} | {{ subscapular|int }} | {{ suprailiac|int }} | {{ midaxillary|int }} |