Light
Back to Main
🌾 Crop Price Tracker
Select Crop
-- Choose your crop --
{% for crop in crops %}
{{ crop }}
{% endfor %}
Select State
-- First select a crop --
Select Market
-- First select a state --
Track Prices
{% if error %}
⚠️ Error:
{{ error }}
{% endif %} {% if result %}
📈 Latest Market Prices
{% for row in result %}
{{ row['arrival_date'] }}
₹{{ row['modal_price'] }} / quintal
{{ row['market'] }}, {{ row['state'] }}
{% endfor %}
{% endif %}