2
0
mirror of https://github.com/jfmcbrayer/brutaldon synced 2025-01-27 14:09:37 +01:00

21 lines
456 B
HTML
Raw Normal View History

2018-04-30 14:31:59 -04:00
{% extends "base.html" %}
{% load humanize %}
{% block title %}
2018-05-23 14:20:15 -04:00
Brutaldon - reply
2018-04-30 14:31:59 -04:00
{% endblock %}
{% block content %}
2018-05-23 14:20:15 -04:00
<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>
2018-04-30 14:31:59 -04:00
{% endblock %}