diff --git a/djangoshaker/templates/djangoshaker/recipe.html b/djangoshaker/templates/djangoshaker/recipe.html new file mode 100644 --- /dev/null +++ b/djangoshaker/templates/djangoshaker/recipe.html @@ -0,0 +1,38 @@ +{% extends "djangoshaker/template.html" %} + +{% load djangoshaker_html_helpers %} + +{% block title %}Django Shaker - {{recipe.name}}{% endblock %} + +{% block header_title %}{{recipe.name}}{% endblock %} + +{% block content %} + +{% if recipe %} + +

Ingredients

+ +{% if recipe.recipeingredient_set %} + +{% endif %} + +

Preparation Instructions

+
+ {{recipe.instructions|linebreaks}} +
+ +{% if recipe.description %} +

Description

+
+ {{recipe.description|linebreaks}} +
+{% endif %} + +{% endif %} + +{% endblock %} +