moviewyrm/fedireads/templates/status.html
Mouse Reeve f714b961f2 Adds status page
Works on #18
2020-03-07 15:28:11 -08:00

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 %}