{% extends "base.html" %} {% load i18n %} {% load static %} {% load crispy_forms_tags %} {% block header %} {% endblock %} {% block title %}{% translate "Daily calories calculator" %}{% endblock %} {% block content %}

1 - {%trans "Basal metabolic rate" %}

{% blocktranslate %}The basal metabolic rate is the amount of energy expended daily at rest. This is the minimum energy needed for the body to function, without any additional physical activity.{% endblocktranslate %}

{% crispy form %}

2 - {%trans "Physical activities" %}

{% blocktranslate %}The physical activity level (PAL) is a factor used to to express the additional physical activity and is used to calculate the total energy required per day.{% endblocktranslate %}

{% crispy form_activities %}

3 - {% translate "Total daily calories" %}

{% blocktranslate %}The base caloric intake is the amount of calories your metabolism needs based on your level of physical activity.{% endblocktranslate %}

{% csrf_token %}
{% translate "Basic caloric intake" %}

{% blocktranslate %}The total calories are the actual total calories per day. This might include e.g. a surplus or deficit if you are bulking or cutting. Alternatively you might just enter yourself the amount of calories if you know the value.{% endblocktranslate %}

{{ form_calories.additional_calories|as_crispy_field }} {{ form_calories.calories|as_crispy_field }}

{% endblock %} {# #} {# Side bar #} {# #} {% block sidebar %}

{% translate "Info" %}

{% blocktranslate %}Please note that these calculations can only be an approximation. If you base your nutrition plan on these values, observe yourself for some weeks and change the total amount if needed.{% endblocktranslate %}

{% endblock %}