{% extends 'base.html' %} {% block title %}/{{ board.slug }}/ - {{ board.name }}{% endblock %} {% block content %}

/{{ board.slug }}/ - {{ board.name }}

{{ board.description }}

{% for thread in threads %}
{% if thread.files %}
{% for file in thread.files[:1] %} {% if file.filename.endswith(('.mp4', '.webm')) %} {% else %} Post image {% endif %} {% endfor %} {% if thread.files|length > 1 %} + {{ thread.files|length - 1 }} autres {% endif %}
{% endif %}
{{ thread.nickname }} {{ thread.created_at.strftime('%d/%m %H:%M') }} N° {{ thread.id }}
{{ thread.content|default('', true)|truncate(300)|format_post(post_context) }}
{% set recent_replies = thread.replies[-2:] %} {% if recent_replies %}
{% for reply in recent_replies %}
>> {{ reply.created_at.strftime('%H:%M') }} {{ reply.content|truncate(100) }}
{% endfor %}
{% endif %}
{% else %}

C'est calme ici. Lancez une conversation.

{% endfor %}
{% endblock %}