{% extends "forum/base.html" %} {% load i18n rstview_tags %} {% block forum_content %}
{% for category in object_list %}

{{ category.title }}

{% if category.description %}
{{ category.description|source_render:"forum_message" }}
{% endif %} {% if category.num_threads > 0 %}

{% blocktrans %}Thread{% endblocktrans %}: {{ category.num_threads }}

{% else %}

{% blocktrans %}No thread yet{% endblocktrans %}

{% endif %} {% if category.get_last_thread %}

{{ category.get_last_thread.subject }} - {% blocktrans with thread_date=category.get_last_thread.modified|date:"d/m/Y à H:i" thread_author=category.get_last_thread.get_last_post.author %}On {{ thread_date }} - By {{ thread_author }}{% endblocktrans %}

{% endif %}
{% empty %}

{% blocktrans %}No category yet{% endblocktrans %}

{% endfor %}
{% comment %}{% pagination_tag pagination_url_args %}{% endcomment %} {% include 'forum/pagination.html' %} {% endblock %}