{% 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 }}

    {% trans "Publicado por:" %} {{ post.author }}
    {% if post.author_type == scout_content_type and post.author_id == scout_id %} {% endif %}

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

      Comentado por: {{ comment.author }} {% if comment.author_type == scout_content_type and comment.author_id == scout_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 %}