{% csrf_token %}

{{data.user.name}}

{% if data.fav_recipes %} {% if data.num_of_fav_recipes == 1 %}

List of all Your Favorite Recipes ({{data.num_of_fav_recipes}} Item)

{% else %}

List of all Your Favorite Recipes ({{data.num_of_fav_recipes}} Items)

{% endif %}
{% for recipe in data.fav_recipes %}
{% endfor %}
{% else %}

Your Favorite Recipe List is Empty. Try adding a few.

{% endif %}
{% if data.user %} {% endif %}