{% load i18n %} {% for forum in forums %} {% endfor %}
{% trans "Forum" %} {% trans "Topics" %} {% trans "Posts" %} {% trans "Last post" %}
 {{ forum.title }} {% if forum.num_topics > 0 %}{{ forum.num_topics }}{% else %}0{% endif %} {% if forum.num_posts > 0 %}{{ forum.num_posts }}{% else %}0{% endif %} {% if forum.last_post_date %}{{ forum.last_post_date }}{% endif %} {% if forum.last_post_username %}{% trans 'by' %} {{ forum.last_post_username }}{% endif %}