{% extends "frontend/base.html" %} {% load chanup %} {% block title %} {{op.subject}} {% endblock %} {% block navbar_links %} back to {{op.newsgroup.name}} {% endblock %} {% block content %}
{{op.name}} {{op.subject}} {{op.msgid}} {{op.postdate|date}} >>{{op.shorthash}}
{% for a in op.attachments.all %} {% endfor %}
{{op.message|memepost}}
{% for reply in op.get_all_replies %}
{{reply.name}} {{reply.subject}} {{reply.msgid}} {{reply.postdate|date}} >>{{reply.shorthash}}
{% for a in reply.attachments.all %} {% endfor %}
{% autoescape off %}
{{reply.message|memepost}}
{% endautoescape %}
{% endfor %}

{% endblock %}