{% load i18n %}
{% for recipe in recipes %}
{% if recipe.image %} {{ recipe.title }} {% else %}
lunch_dining
{% endif %} {% if user.is_authenticated %} {% endif %} {% if user.is_authenticated and recipe.price %}
{% csrf_token %}
{% endif %}
{{ recipe.title }}
{% if recipe.price %}
euro_symbol {{ recipe.price }}
{% endif %}
{% if recipe.uploaded_by %} {% if recipe.uploaded_by.avatar %} {{ recipe.uploaded_by.username }} {% 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 %}
{% empty %}
no_food
{% trans "No sandwitches found." %}

{% trans "Be the first to create one!" %}

{% if user.is_authenticated %} {% trans "Add Recipe" %} {% endif %}
{% endfor %}