mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 04:10:06 -05:00
14 lines
262 B
HTML
14 lines
262 B
HTML
{% extends "base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
{% load custom_tags %}
|
|
|
|
{% block title %}{% trans 'View' %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>{{ recipe.name }}</h3>
|
|
|
|
{{ recipe.instructions | markdown | safe }}
|
|
|
|
{% endblock %} |