forked from mirrors/bookwyrm
f714b961f2
Works on #18
17 lines
393 B
HTML
17 lines
393 B
HTML
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
|
|
<div id="content">
|
|
{% if status.reply_parent %}
|
|
{% include 'snippets/status.html' with status=status.reply_parent %}
|
|
{% endif %}
|
|
|
|
{% include 'snippets/status.html' with status=status main=True %}
|
|
|
|
{% for reply in replies %}
|
|
{% include 'snippets/status.html' with status=reply %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|