{% extends 'base.html' %} {% block content %}

Recipe Dashboard

{% with messages = get_flashed_messages() %} {% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% for recipe in recipes %}

{{ recipe.title }}

Cuisine: {{ recipe.cuisine }} | Dietary: {{ recipe.dietary }}

{% else %}

No recipes found.

{% endfor %}
{% endblock %}