{% if recipe.image %}
{% else %}
{% endif %}
lunch_dining
{% endif %}
{% if user.is_authenticated %}
{% endif %}
{% if user.is_authenticated and recipe.price %}
{{ 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 %}
{% with favoriters=recipe.favorited_by.all %}
{% with count=favoriters.count %}
{% if count > 0 %}
{% trans "Liked by" %}
{% if count == 1 %}
{{ favoriters.0.username }}
{% elif count == 2 %}
{{ favoriters.0.username }} {% trans "and" %} {{ favoriters.1.username }}
{% else %}
{{ favoriters.0.username }}, {{ favoriters.1.username }} {% trans "and" %} {{ count|add:"-2" }} {% trans "others" %}
{% endif %}
{% endif %}
{% endwith %}
{% endwith %}
{% for tag in recipe.tags.all %}
{{ tag.name }}
{% endfor %}