{% trans "Estado de los Cultivos" %}
{% if has_crops %}
{% else %}

{% trans "No hay datos disponibles." %}

{% endif %}
{% trans "Próximas Cosechas" %}
{% if has_crops %}
{% else %}

{% trans "No hay datos disponibles" %}

{% endif %}
{% trans "Recomendaciones Recientes" %}
{% if recommendations %}
    {% for recommendation in recommendations %}
  • Cultivo: {{ recommendation.crop_observation.crop.name }} | {{ recommendation.title }} | {{ recommendation.description }}
  • {% endfor %}
{% else %}

{% trans "No hay recomendaciones disponibles" %}

{% endif %}
{% trans "Últimas Publicaciones del Foro" %}
{% if recent_posts %}
    {% for post in recent_posts %}
  • {{ post.title }} - {{ post.created_at|date:"d M Y" }}
  • {% endfor %}
{% else %}

{% trans "No hay publicaciones recientes" %}

{% endif %}
{% trans "Noticias" %}
{% if news_items %}
    {% for news in news_items %}
  • {{ news.title }} - {{ news.created_at|date:"d M Y" }}
  • {% endfor %}
{% else %}

{% trans "No hay noticias disponibles" %}

{% endif %}