{% if recipe.image %}
{% else %}
lunch_dining
{% endif %}
{% if user.is_authenticated %}
{% endif %}
{{ recipe.title }}
{% if recipe.price %}
euro_symbol
{{ recipe.price }}
{% endif %}
{% if recipe.uploaded_by %}
{% if recipe.uploaded_by.avatar %}
{% else %}
person
{% endif %}
{{ recipe.uploaded_by.username }}
{% else %}
person_off
{% trans "Unknown" %}
{% endif %}
{% if recipe.favorited_by.all %}
{% if recipe.favorited_by.count == 1 %}
{% trans "Liked by" %} {{ recipe.favorited_by.first.username }}
{% else %}
{% trans "Liked by" %} {{ recipe.favorited_by.first.username }} {% trans "and" %} {{ recipe.favorited_by.count|add:"-1" }} {% trans "others" %}
{% endif %}
{% endif %}
{% for tag in recipe.tags.all %}
{{ tag.name }}
{% endfor %}
{% trans 'View' %}
arrow_forward
{% if user.is_authenticated and recipe.price %}
{% endif %}