{% extends 'base.html' %} {% load humanize %} {% block title %} {{ board.name }} - {{ block.super }} {% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
New topic
{% for topic in topics %} {% url 'topic_posts' board.pk topic.pk as topic_url %} {% endfor %}
Topic Starter Replies Views Last Update

{{ topic.subject }}

Pages: {% for i in topic.get_page_range %} {{ i }} {% endfor %} {% if topic.has_many_pages %} ... Last Page {% endif %}
{{ topic.starter.username }} {{ topic.replies }} {{ topic.views }} {{ topic.last_updated|naturaltime }}
{% include 'includes/pagination.html' %} {% endblock %}