{% extends "base.html" %}
{% load humanize %}
{% block title %}
Brutaldon ({{ own_acct.username }}) - thread
{% endblock %}
{% comment %}
mastodon.status_context()
# 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 active=True %}
{% for descendant in context.descendants %}
{% include "main/toot_partial.html" with toot=descendant %}
{% endfor %}
{% endblock %}
{% block page_scripts_inline %}
{% endblock %}