{% trans "Proyección de Rendimientos" %}
{% if projected_gains %}
{% else %}
| {% trans "Nombre del Cultivo" %} | {% trans "Número de Plantas" %} | {% trans "Producción Estimada (kg)" %} | {% trans "Precio de Mercado ($/kg)" %} | {% trans "Ingresos Estimados ($)" %} |
|---|---|---|---|---|
| {{ gain.crop_name }} | {{ gain.num_plants|intcomma }} | {{ gain.estimated_production|floatformat:0|intcomma }} | ${{ gain.market_price|floatformat:2|intcomma }} | ${{ gain.estimated_income|floatformat:2|intcomma }} |
{% trans "No hay datos disponibles." %}
{% endif %}