{% extends 'base.html' %} {% block content %}

Community Forum

Topics are the main forum pages. Open a topic to browse its thread list and post inside that section.

{% for topic in topics %} {% set summary = topic_summaries.get(topic.id) %}

{{ topic.name }}

{{ topic.description or 'Forum topic discussion.' }}

{{ summary.thread_count if summary else 0 }} threads · {{ summary.post_count if summary else 0 }} visible posts

{% if summary and summary.last_post_at %}

Latest activity {{ summary.last_post_at }}{% if summary.last_post_by %} · {{ summary.last_post_by }}{% endif %}

{% else %}

No posts yet.

{% endif %} Open topic page
{% else %}

No forum topics are visible to your account.

{% endfor %}
{% endblock %}