{% extends "vegetarian_cookbook/base.html" %} {% load static %} {% load i18n %} {% load admin_urls %} {% load vegetarian_cookbook_tags %} {% block bootstrap4_extra_head %} {{ ingredient.name }} {% endblock %} {% block bootstrap4_content %}

{{ ingredient.name }} {% if perms.vegetarian_cookbook.can_change %} {% endif %}

{% if ingredient.image %}
{% endif %}
{% recipe_energy_nutrients 80 True ingredient %}
{% for nutrient in ingredient.ingredientnutritionalvalue_set.all %}
{{ nutrient.nutrient.name }}
{{ nutrient.value | human_float }} {{ nutrient.unit }}
{% endfor %}
{% if ingredient.description %}
{{ ingredient.description | safe }}
{% endif %}
{% endblock %}