21 lines
456 B
HTML
21 lines
456 B
HTML
{% extends "base.html" %}
|
|
{% load humanize %}
|
|
|
|
{% block title %}
|
|
Brutaldon - reply
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 class="title">Thread</h1>
|
|
{% for ancestor in context.ancestors %}
|
|
{% include "main/toot_partial.html" with toot=ancestor %}
|
|
<hr class="is-hidden">
|
|
{% endfor %}
|
|
{% include "main/toot_partial.html" with toot=toot active=True %}
|
|
<hr class="is-hidden">
|
|
<div class="box">
|
|
{% include "main/post_partial.html" %}
|
|
</div>
|
|
|
|
{% endblock %}
|