)
# Returns the following dictionary:
{
'ancestors': # A list of toot dicts
'descendants': # A list of toot dicts
}
{% endcomment %}
{% block content %}
Thread
{% for ancestor in context.ancestors %}
{% include "main/toot_partial.html" with toot=ancestor %}
{% endfor %}
{% include "main/toot_partial.html" with toot=toot %}
{% for descendant in context.descendants %}
{% include "main/toot_partial.html" with toot=descendant %}
{% endfor %}
{% endblock %}