{% 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 }}

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

{% endblock content %}