{% 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) }}
3-Site Caliper Method {% for name in sites_3 %}
{% endfor %}
Additionally for 7-Site Caliper Method {% for name in additional_sites_7 %}
{% endfor %}
{% 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"), ] %} {% endfor %} {% for datetime, chest, abdominal, tigh, tricep, subscapular, suprailiac, midaxillary, fat3, fat7 in bodyfat %} {% endfor %}
Date
{{ 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 }}
{% endblock %} {% set parent_page = 'index_view' %}