{% extends 'forum_layout.html' %} {% load forum_extras %} {% block forum_content %}

Forum

{% for category in categories %}

{{ category.name }}

Description
Nombre de topics
Dernier Message
{% for forum in forums %} {% if forum.category.id == category.id %}
{% if unread_topics|get_item:forum.id %} {{ forum.name }} {% else %} {{ forum.name }} {% endif %}
{{ forum.description|safe }}
{{ count_topics|get_item:forum.id|default_if_none:'Aucun' }}
{% with last_post=last_posts|get_item:forum.id %} {% if last_post %} {{ last_post.author.username }} dans {{ last_post.topic.title }}
{{ last_post.created }} {% else %} Aucun message {% endif %} {% endwith %}
{% endif %} {% endfor %}
{% endfor %}
{% endblock %}