bookwyrm/fedireads/templates/status.html

18 lines
393 B
HTML
Raw Normal View History

2020-03-07 23:28:11 +00:00
{% 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 %}