{% extends 'base.html' %} {% load gravatar %} {% block title %}{{ topic.subject }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
Reply
{% for post in posts %}
{% if forloop.first %}
{{ topic.subject }}
{% endif %}
{{ post.created_by.username }} Posts: {{ post.created_by.posts.count }}
{{ post.created_by.username }}
{{ post.created_at }}
{{ post.get_message_as_markdown }} {% if post.created_by == user %} {% endif %}
{% endfor %} {% include 'includes/pagination.html' %} {% endblock %}