{% extends "base.html" %} {% block head %} {{ super() }} {% endblock %} {% block content %} {{ super() }}

Info

Board: {{ board }}
Threads: {{ threads|length }}
Total posts: {{ posts }}

{% for thread in threads %} {% endfor %}
# Subject Posts Views Score Created Lasthit
{{ loop.index }} {{ thread['subject'] }} {{ thread['posts_count'] }} {{ thread['views'] }} {{ "%.2f"|format(thread['score']|float) }} {{ thread['timestamp'] | time }} {{ thread['lasthit'] | time }}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}