{% extends "frontend/base.html" %} {% load chanup %} {% block title %} {{name}} page {{page}} {% endblock %} {% block navbar_links %} {% if prevpage %} previous page {% endif %} {% if nextpage %} {% if prevpage %}|{% endif %} next page {% endif %} {% endblock %} {% block content %}
{% for op in threads %}
{{op.name}} {{op.subject}} {{op.postdate|date}} >>{{op.shorthash}}
{% for a in op.attachments.all %} {% endfor %}
{{op.message|truncate|memepost}}
{% for reply in op.get_board_replies %}
{{reply.name}} {{reply.subject}} {{reply.postdate|date}} >>{{reply.shorthash}}
{% for a in reply.attachments.all %} {% endfor %}
{{reply.message|truncate|memepost}}
{% endfor %}
{% endfor %}
{% if prevpage %} prev {% endif %} {% if nextpage %} next {% endif %}
{% endblock %}