{% extends "base_beer.html" %} {% block title %}{{ recipe.title }} — Sandwitch{% endblock %} {% block extra_head %} {{ block.super }} {% load custom_filters %} {# Load your custom filters #} {% endblock %} {% block content %} {% load i18n markdown_extras %} {# Keep existing load tags #}
{% if recipe.image %} {{ recipe.title }} {% else %}
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 %}
{% trans "Description" %}
{% if recipe.description %} {{ recipe.description|convert_markdown|safe }} {% else %}

{% trans "No description yet." %}

{% endif %}
{% include "components/ingredients_section.html" %}
{% include "components/instructions_section.html" %}
{% endblock %} {% block extra_scripts %} {{ block.super }} {% include "components/ingredients_scripts.html" %} {% endblock %}