{% trans "Distribución de Cultivos por Tipo" %}

{% if has_crops %}
{% else %}

{% trans "No hay datos disponibles" %}

{% endif %}

{% trans "Producción Estimada por Tipo de Cultivo" %}

{% if has_crops %}
{% else %}

{% trans "No hay datos disponibles" %}

{% endif %}

{% trans "Ingresos Estimados por Tipo de Cultivo" %}

{% if has_crops %}
{% else %}

{% trans "No hay datos disponibles" %}

{% endif %}

{% trans "Acciones" %}

{% trans "Mis Cultivos" %}

{% if crops %} {% for crop in crops %} {% endfor %}
{% trans "Nombre" %} {% trans "Tipo" %} {% trans "Campo" %} {% trans "Fecha de Cosecha Esperada" %} {% trans "Acciones" %}
{{ crop.name }} {{ crop.get_crop_type_display }} {{ crop.field.name }} {{ crop.expected_harvest_date|date:"d M, Y" }} {% trans "Ver Detalle" %} Editar
{% else %}

{% trans "No hay cultivos registrados" %}

{% endif %}