{% for i in data %}
{% if i.main_menu=='Vegetables' %}
{% set veg = i.id %}
{% elseif i.main_menu=='Fruits' %}
{% set fruit = i.id %}
{% endif %}
{% endfor %}
| ક્ર્મ |
પ્રકાર |
શાકભાજીનું નામ |
૨૦ કિલોનો ભાવ |
{% set veg_total = 1 %}
{% for p in product_today_price_data %}
| {{ veg_total }} |
{{ p.veg_type }} |
{{ p.product_name }} |
રૂ. {{ p.low_price }} - {{ p.high_price }} |
{% set veg_total = veg_total + 1 %}
{% endfor %}
| ક્ર્મ |
પ્રકાર |
ફળનું નામ |
૨૦ કિલોનો ભાવ |
{% set fruit_total = 1 %}
{% for p in product_today_price_data %}
{% if p.main_menu_id==fruit %}
| {{ fruit_total }} |
{{ p.veg_type }} |
{{ p.product_name }} |
રૂ. {{ p.low_price }} - {{ p.high_price }} |
{% set fruit_total = fruit_total + 1 %}
{% endif %}
{% endfor %}