lunch_dining
{% endif %}
{% include "components/recipe_header.html" %}
{% trans "Tags" %}
{% for tag in recipe.tags.all %}
{{ tag.name }}
{% endfor %}
{% 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 %}
{% include "components/rating_section.html" %}
{% if user.is_authenticated and user.is_staff %}
edit
{% trans "Edit Recipe" %}
{% endif %}