brutaldon-interfaccia-web-m.../brutaldon/templates/main/reply.html

21 lines
456 B
HTML
Raw Normal View History

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