{% 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 %} {% if captcha %} {% include "frontend/postform.html" %} {% endif %} {% for op in threads %}
[reply]
>>{{op.shorthash}}
{% for a in op.attachments.all %} {% endfor %}
{{op.message|truncate|memepost}}
{% for reply in op.get_board_replies %}
[reply]
>>{{reply.shorthash}}
{% for a in reply.attachments.all %} {% endfor %}
{{reply.message|truncate|memepost}}
{% endfor %}

{% endfor %}
{% if prevpage %} prev {% endif %} {% if nextpage %} next {% endif %}
{% endblock %}