{% extends "container/public.html" %} {% block content %}

{{ forum.label }}

Threads

{% for thread in threads %}
{{ thread.title }}
{% if let Some(subtitle) = thread.subtitle %}{{ subtitle }}
{% endif %} {% match thread.username %}{% when Some with (username) %}{{ username }}{% when None %}Guest{% endmatch %} ยท
Replies:
{{ thread.post_count }}
Views:
{{ thread.view_count }}
{% endfor %}
{% if client.can_post_in_forum() %}

New Thread

{% endif %} {% endblock %}