{% extends "layouts/base.html" %} {% block content %}
{{ t('weather_today') }}
{{ user.district or weather.district if weather else '' }}
{{ t('todays_market_price') }}
{{ t('crop_status') }}
| {{ t('crop_name') }} | {{ t('today_price') }} | {{ t('yesterday_price') }} | {{ t('change') }} |
|---|---|---|---|
| {{ p.crop.crop_name_bn if current_lang=='bn' else p.crop.crop_name }} | ৳{{ p.price_per_kg }} | ৳{{ p.previous_price }} | {{ '+' if p.price_per_kg >= p.previous_price else '' }}{{ (((p.price_per_kg - p.previous_price) / p.previous_price) * 100) | round(1) if p.previous_price else 0 }}% |
| No market data yet. | |||
{{ t('rain_probability') }}: {{ weather.rain_probability }}%
No active alerts for your district today.
{% endif %} {{ t('view_details') }}{{ t('income') }}: ৳{{ income }}
{{ t('expense') }}: ৳{{ expense }}
{{ t('profit') }}: ৳{{ profit }}