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

{{ forum.name }}

{% if user.is_authenticated %} Nouveau Topic {% endif %}
Sujet
Auteur
Messages
Dernier Message
{% for topic in topics %}
{% if unread_topics|get_item:topic.id %} {{ topic.title }} {% else %} {{ topic.title }} {% endif %}
{{ topic.created_at }}
{{ topic.author.username }}
{{ count_posts|get_item:topic.id|default_if_none:'Aucun' }}
{% with last_post=last_posts|get_item:topic.id %} {% if last_post %} {{ last_post.author.username }}
{{ last_post.created }} {% else %} Aucun message {% endif %} {% endwith %}
{% endfor %} {% paginate %}
{% endblock %}