{% extends 'forums/base.html' %} {% load bootstrap %} {% block breadcrumb_items %} {{ block.super }} Details {% endblock %} {% load scipost_extras %} {% block pagetitle %}: Forum details{% endblock pagetitle %} {% block content %}

{{ forum.name }}

{% if perms.forums.can_add_forum %}

Create a (sub)Forum within this one

{% endif %} {% for post in forum.posts.all %} {% include 'forums/post_card.html' with post=post %} {% endfor %}

Add a Post

{% endblock content %}