{% extends "base_pico.html" %} {% block title %}{{ recipe.title }} — Sandwitch{% endblock %} {% block content %} {% load markdown_extras %}
{% if recipe.image %} {{ recipe.title }} {% endif %}
{{ recipe.title }}

Description

{{ recipe.description|convert_markdown|safe|default:"No description yet." }}

Ingredients

{{ recipe.ingredients|convert_markdown|safe|default:"No ingredients listed." }}

Instructions

{{ recipe.instructions|convert_markdown|safe|default:"No instructions yet." }}
{% for tag in recipe.tags.all %} {{ tag.name }} {% endfor %}
{% if user.is_authenticated and user.is_staff %} {% endif %}
{% endblock %}