{% for forum, forumsread in forums %}
{% if forum.external %}
{{ forum.description|nonpost_markup }}
-
-
---
{% else %}
{% if forum.locked %}
{% elif forum|forum_is_unread(forumsread, current_user) %}
{% else %}
{% endif %}
{{ forum.description|nonpost_markup }}
{% if forum.show_moderators %}
{% trans %}Moderators{% endtrans %}:
{% for moderator in forum.moderators %}
{{ moderator.username }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}
{{ forum.topic_count }}
{{ forum.post_count }}
{% if forum.last_post_id %}
{{ forum.last_post_created|time_since }}
{% trans %}by{% endtrans %}
{% if forum.last_post_user_id %}
{{ forum.last_post_username }}
{% else %}
{{ forum.last_post_username }}
{% endif %}
{% else %}
{% trans %}No posts.{% endtrans %}
{% endif %} {# endif forum.last_post_id #}
{% endif %} {# endif forum.external #}
{% endfor %}