summaryrefslogtreecommitdiff
path: root/static/website/templates/get_post.html
blob: 359bcd22833905765ebaaff930cf11d4ec83c905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends 'website/templates/base.html' %}
{% block content %}
<h4>{{post.title}}</h4>
<p>
    {{ post.body }}
</p>

<b>Replies</b>
{% for reply in replies %}
    {{ reply.body }}
{% endfor %}
{% endblock %}