{% extends "layouts/base.html" %} {% block content %}

{{ t('nav_crop_advisory') }}

{% if crops %}
{% for crop in crops %}
{{ crop.crop_name }}

{{ crop.crop_name_bn if current_lang=='bn' else crop.crop_name }}

{{ crop.profit_level }}

{{ crop.description }}

{{ t('season') }}{{ crop.season }}
Yield{{ crop.expected_yield }}
Growing Time{{ crop.growing_time_days }} days
Market Demand{{ crop.market_demand }}
{% endfor %}
{% else %}

Fill out the form above to get personalized crop recommendations.

{% endif %} {% endblock %}