recipes view

This commit is contained in:
vabene1111
2019-11-14 01:01:14 +01:00
parent ffc5b3347e
commit b725ee6b6a
7 changed files with 33 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
{% 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 %}