{% extends 'feed/layout.html' %} {% load i18n %} {% load bookwyrm_tags %} {% block panel %}
{% trans "Back" %}
{% for parent in ancestors %} {% if parent.id %}
{% include 'snippets/status/status.html' with status=parent|load_subclass %}
{% endif %} {% endfor %}
{% include 'snippets/status/status.html' with status=status main=True %}
{% for child in children %}
{% include 'snippets/status/status.html' with status=child %}
{% endfor %}
{% endblock %}