{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% load manager_extras %} {% block title %}{{ingredient.name}}{% endblock %} {% block content %}

{% trans "Nutritional values in 100g of product." %}

{% trans "Macronutrients" %}
{% trans "Energy" %} {{ingredient.energy}} kcal
{% trans "Protein" %} {{ingredient.protein}} g
{% trans "Carbohydrates" %} {{ingredient.carbohydrates}} g
{% trans "Sugar content in carbohydrates" %} {{ingredient.carbohydrates_sugar}} g
{% trans "Fat" %} {{ingredient.fat}} g
{% trans "Saturated fat content in fats" %} {{ingredient.fat_saturated}} g
{% trans "Others" %}
{% trans "Fibres" %} {% if ingredient.fibres %}{{ingredient.fibres}} g{% else %}-/-{% endif %}
{% trans "Sodium" %} {% if ingredient.sodium %}{{ingredient.sodium}} g{% else %}-/-{% endif %}
{% endblock %} {% block sidebar %} {% if perms.exercises %}

{% trans "Options" %}

{% trans 'Delete ingredient' %} {% trans 'Delete ingredient' %}

{% trans 'Edit ingredient' %} {% trans 'Edit ingredient' %}

{% endif %} {% cc_by_sa_sidebar language %} {% endblock %}