{% extends "recipe_hub/base_recipe_hub.html" %} {% block recipe_hub_content %}

Flagged Recipes {{ recipes|length }}

{% if recipes %}
{% for r in recipes %}{% endfor %}
{% endif %}
{% if not recipes %}
No flagged recipes.
{% else %} {% for r in recipes %}
{{ r.title }}
{{ r.flag_notes or 'No flag notes' }}
Review
{% endfor %} {% endif %} {% endblock %}