{% load crispy_forms_tags %} {% load static %} GymBuddy

Find New Meals To Fit Your Goals!

{% for key, value in meals.items %}

{{value.name}}


Tags:

{% for i in value.tags %} {{i}} {% endfor %}

Instructions:

{{value.instructions}}

Ingredients:

{% for i in value.ingredients %} {{i}}

{% endfor %}

{% endfor %}
{% block body %}

Meals List

Check out our extensive list of meals!

{% csrf_token %} {{filter|crispy}}
{% for meal in meals %}

{{meal.title}}
Category: {{meal.category}}

{{meal.summary}}

{% endfor %}
{% endblock body %}