{% extends "vegetarian_cookbook/base.html" %} {% load static %} {% load i18n %} {% load admin_urls %} {% load vegetarian_cookbook_tags %} {% block bootstrap4_extra_head %} {{ recipe.title }} {% if recipe.image %} {% endif %} {% endblock %} {% block bootstrap4_content %}
{% if recipe.image %}
{% for im in recipe.recipeimage_set.all %} {% endfor %}
{% endif %} {% if recipe.time %} {% recipe_cooking_time recipe.time %} {% endif %}
{{ recipe.get_сomplexity_display }}
{% recipe_energy_nutrients 80 True recipe.energy recipe.protein recipe.fat recipe.carbohydrate %}
{% for ri in recipe.recipeingredient_set.all %} {% endfor %}
{{ ri.ingredient.name }} {% if ri.quantity %} {{ ri.quantity | human_float:"1"}} {% plural_form ri.unit ri.quantity %} ({{ ri.weight | human_float:"0"}} {% trans "gr" %}) {% else %} {{ ri.weight | human_float:"0"}} {% trans "gr" %} {% endif %} {% if ri.roughly %} * {% endif %}
{% if recipe.has_roughly %} * - {% trans "roughly" %}. {% endif %}
{{ recipe.description |safe }}
{% for rt in recipe.tags.all %} {% endfor %}
{% for ri in recipe.recipeingredient_set.all %} {% endfor %}
{% trans "Ingredients" %} {% trans "Weight, gram" %} {% trans "Protein, gr" %} {% trans "Fat, gr" %} {% trans "Carbohydrate, gr" %} {% trans "Energy, kCal" %} {% trans "Energy/100g, kCal" %}
{{ ri.ingredient.name }} {% if ri.roughly %} * {% endif %} -- -- -- -- {{ ri.ingredient.energy | human_float:"0" }}
{% trans "Total" %}
{% trans "Per 100 grams" %}

{% trans "please wait" %}
{% endblock %}