{% 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 #}
{{ recipe.title }}
{% 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 %}