Forum |
Topics |
Posts |
Last Post |
{% for forum, forumsread in forums %}
{% if forum.external %}
|
{{ forum.title }}
{% autoescape false %}
{{ forum.description|markup }}
{% endautoescape %}
|
- |
- |
- |
{% else %}
{% if forum.locked %}
{% elif forum|forum_is_unread(forumsread, current_user) %}
{% else %}
{% endif %}
{{ forum.title }}
{% autoescape false %}
{{ forum.description|markup }}
{% endautoescape %}
{% if forum.show_moderators %}
Moderators:
{% 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.topic.title|crop_title }}
{{ forum.last_post.date_created|time_since }}
{% if forum.last_post.user_id %}
by {{ forum.last_post.user.username }}
{% else %}
{{ forum.last_post.username }}
{% endif %}
{% else %}
No posts
{% endif %}
{% endif %}
|
{% endfor %}