{% load i18n %}

{{ recipe.title }}

{% if user.is_authenticated %} {% if recipe in user.favorites.all %}favorite{% else %}favorite_border{% endif %} {% endif %}
{% if recipe.uploaded_by %} {% if recipe.uploaded_by.avatar %} {{ recipe.uploaded_by.username }} {% else %} person {% endif %}
{% trans "Uploaded by" %}
{{ recipe.uploaded_by.get_full_name|default:recipe.uploaded_by.username }}
{% else %} person_off
{% trans "Unknown uploader" %}
{% endif %}
{% if recipe.prep_time %}
timer {% trans "Prep:" %} {{ recipe.prep_time }}m
{% endif %} {% if recipe.cook_time %}
cooking {% trans "Cook:" %} {{ recipe.cook_time }}m
{% endif %} {% if recipe.calories %}
bolt {{ recipe.calories }} kcal
{% endif %}
group {{ recipe.servings }} {% trans "servings" %}
{% if recipe.price %}
euro_symbol
{{ recipe.price }}
{% if user.is_authenticated %}
{% csrf_token %}
{% endif %}
{% endif %}