moviewyrm/bookwyrm/templates/feed/status.html

16 lines
387 B
HTML
Raw Normal View History

2021-01-29 18:25:31 +00:00
{% extends 'feed/feed_layout.html' %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
2021-01-29 18:25:31 +00:00
{% block panel %}
<header class="block">
<a href="/#feed" class="button" data-back>
<span class="icon icon-arrow-left" aira-hidden="true"></span>
2021-02-28 02:48:10 +00:00
<span>{% trans "Back" %}</span>
2021-01-29 18:25:31 +00:00
</a>
</header>
{% include 'feed/thread.html' with status=status depth=0 max_depth=6 is_root=True direction=0 %}
{% endblock %}