mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-29 13:01:08 +00:00
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 %}
|
|
|