{% extends "base_beer.html" %} {% load i18n static %} {% block title %}{% trans "Cooking" %}: {{ recipe.title }} — Sandwitch{% endblock %} {% block body_class %}eink-mode{% endblock %} {% block content %}

{{ recipe.title }}

{% if ingredients %}

{% trans "Ingredients" %}

    {% for item in ingredients %}
  • {{ item }}
  • {% endfor %}
{% endif %} {% if steps %}
{% trans "Step" %} {{ current_step }} {% trans "of" %} {{ total_steps }}
{{ steps|slice:current_step|last }}
{% else %}

{% trans "No instructions available for this recipe." %}

{% endif %}
{% trans "Show All Steps" %} {% trans "Back to Recipes" %}
{% endblock %}