{{ category.title }}
{% trans %}Forum{% endtrans %}
{% trans %}Last Post{% endtrans %}
{% for forum, forumsread in forums %}
{% if forum.external %}
{% trans %}Link to{% endtrans %}: {{ forum.title }}
{{ 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 %}
{% if forum.last_post_id %}
{{ forum.last_post_title|crop_title }}
{{ forum.last_post_created|time_since }}
{% else %} {% trans %}No posts.{% endtrans %} {% endif %} {# endif forum.last_post_id #}
{% endif %} {# endif forum.external #}
{% endfor %}