{# #} {% if meal_of_orders is defined and meal_of_orders is not empty %} {% for meal_of_orders in meal_of_orders %}
{{meal_of_orders.product_name}}
{{meal_of_orders.date_given}}
Note:{{meal_of_orders.order_note_text}}
{#
{% if meal_of_orders.proteins_amount != 0 %} Pro - {{meal_of_orders.proteins_amount}} / {% endif %} {% if meal_of_orders.carbs_amount != 0 %} Carb - {{meal_of_orders.carbs_amount}} / {% endif %} {% if meal_of_orders.fat != 0 %} Fat - {{meal_of_orders.fat}} / {% endif %} {% if meal_of_orders.calory != 0 %} Calory - {{meal_of_orders.calory}} {% endif %}
#}
{% endfor %} {% endif %}