{% extends 'pybb/base.html' %}
{% load pybb_tags i18n %}
{% block title %}{{ forum.name }}{% endblock title %}
{% block breadcrumb %}
{% with forum as object %}
{% include "pybb/breadcrumb.html" %}
{% endwith %}
{% endblock %}
{% block content %}
{{ forum.name }}
{% if forum.headline %}
{{ forum.headline|safe }}
{% endif %}
{% include "pybb/pagination.html" %}
{% include "pybb/topic_list.html" %}
{% include "pybb/pagination.html" %}
{% if PYBB_ENABLE_ANONYMOUS_POST or not user.get_profile.is_banned %}