{% trans "Foro de Conocimiento Agrícola" %}

{% trans "Comparte, Aprende y Conéctate en un espacio dedicado al intercambio de experiencias y conocimientos agrícolas." %}

    {% for post in posts %}
  • {{ post.title }}

    {{ post.content }}

    Publicado por: {{ post.author }} - {% if post.author_type.model == 'scout' %}Scout {% elif post.author_type.model == 'farmer' %}Farmer {% elif post.author_type.model == 'agronomist' %}Agronomist {% endif %}
    {% if post.author_type == farmer_content_type and post.author_id == farmer_id %} {% endif %}

      {% for comment in post.comments.all %}
    • {{ comment.content }}

      Comentado por: {{ comment.author }} - {% if comment.author_type.model == 'scout' %}Scout {% elif comment.author_type.model == 'farmer' %}Farmer {% elif comment.author_type.model == 'agronomist' %}Agronomist {% endif %} {% if comment.author_type == farmer_content_type and comment.author_id == farmer_id %} {% endif %}
    • {% endfor %}
  • {% endfor %}

{% trans "Noticias Agricarm" %}

{% for news_item in news %}

{{ news_item.title }}

{{ news_item.content|truncatewords:15|safe }}

{% trans "Publicado el" %} {{ news_item.created_at }}

{% trans "Leer más" %}
{% empty %}

{% trans "No hay noticias disponibles en este momento." %}

{% endfor %}