{{recipe.title}}
+{{ recipe.created_at.strftime('%B %d, %Y') }} at {{ recipe.created_at.strftime('%I:%M %p') }}
+By: {{recipe.user.username}}
+
+ {% if recipe.image_url %}
+
+ {% else %}
+
+ {% endif %}
+
+
+
+
+
+
+ {% if current_user.is_authenticated and current_user.id == recipe.user_id %}
+
+ {% endif %}
+
+
+
+ Prep Time
+{{recipe.prep_time}} min
+
+
+ Cook Time
+{{recipe.cook_time}} min
+
+
+ Oven Temp
+{{recipe.oven_temp}} °F
+
+
+ Yield
+{{recipe.servings}} servings
+
+
+ Description
+{{recipe.description}}
+
+
+ {% endif %}
+
+
+ {% if instructions %}
+ Ingredients
+-
+ {% for ingredient in ingredients %}
+
- {{ ingredient.name }} + {% endfor %} +
+
+ {% endif %}
+
+
+ Instructions
+-
+ {% for instruction in instructions %}
+
- {{ instruction.name }} + {% endfor %} +
+
+
+
+ Comments
+ + + {% for comment in comments %} +
+
+ {% else %}
+
+
+
+
+
+
+
+ {{ comment.user.username }}
+{{ comment.created_at.strftime('%b %d, %Y %I:%M %p') }}
+{{ comment.text }}
+ {% if current_user.is_authenticated and current_user.id == comment.user_id %} +
+
+
+
+ {% endif %}
+ No comments yet. Be the first to comment!
+ {% endfor %} + + + {% if current_user.is_authenticated %} + + {% else %} +Please sign + in to leave a comment.
+ {% endif %} +