1 2 3 4 5 6 7 8 9 10 11 12 13 14
{% extends "base.html" %} {% block title %} Threads {% endblock %} {% block content %} <h1>Threads</h1> {% from "macros/threads.html" import render_threadlist %} <div class="list-group"> {{ render_threadlist(threads) }} </div> {% endblock %}