{% extends 'base.html' %} {% load static %} {% block title %}Post a reply{% endblock %} {% block stylesheet %} {% endblock %} {% block javascript %} {% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
{% csrf_token %} {% include 'includes/form.html' %}
{% for post in topic.posts.all %}
{{ post.created_by.username }}
{{ post.created_at }}
{{ post.get_message_as_markdown }}
{% endfor %} {% endblock %}