{% for list in category %}
{{list.item_food_category}}
{% for menu in menus %} {% if menu.item_food_category == list.item_food_category %}
{{menu.item_desc}}
{{menu.item_name}}
{{menu.item_food_category}}
{{menu.item_price}}
{% csrf_token %}
ADD
{% endif %} {% endfor %}
{% empty %}
Sorry, no selection to display.
{% endfor %}