{% extends "base.html" %} {% block main %} {% include "components/thread_form.html" %}

{{ board.name }}

{% if request.user in board.subscribers %} {% else %} {% endif %}
{% for thread in board.threads|selectattr('closed', 'false') %}
{{ thread.title }}
{{ thread.created.strftime('%Y-%m-%d %H:%M:%S') }}
{{ lists.userItem(thread.user, small=True) }}
{% endfor %}
{% endblock %}