{% extends 'pybb/base.html' %}
{% load pybb_tags %}
{% block title %}{{ forum.name }}{% endblock title %}
{% block content %}
{% block breadcrumb %}
{% with forum as object %}
{% include "pybb/breadcrumb.html" %}
{% endwith %}
{% endblock %}
{{ forum.name }}
{% if forum.headline %}
{{ forum.headline|safe }}
{% endif %}
{% if not user.is_authenticated %}
{% include 'pybb/_need_to_login_message.html' %}
{% endif %}
{% include "pybb/pagination.html" %}
{% include 'pybb/forum_list.html' with forum_list=forum.forums_accessed category='' parent_forum=forum %}
{% include "pybb/topic_list.html" %}
{% include "pybb/pagination.html" %}
{% if user|pybb_may_create_topic:forum %}