{% extends 'base.html' %} {% load static %} {% block main_content %}

Recipe Details

{% if recipe.image_url %} recipe image {% else %} recipe image {% endif %}

{{ recipe.title }}

Cuisine Type: {{ recipe.cuisine_type }}

Cooking Time: {{ recipe.cooking_time }}min.

Ingredients:

    {% for ingredient in ingredients_list %}
  • {{ ingredient }}
  • {% endfor %}

Instructions: {{ recipe.instructions }}

{% endblock %}