-
- {% if toot.favorited %}
-
- {% else %}
-
- {% endif %}
-
+{% include "main/toot_partial.html" with toot=toot %}
+
{% endblock %}
diff --git a/brutaldon/templates/main/reply.html b/brutaldon/templates/main/reply.html
index dec781d..63d98da 100644
--- a/brutaldon/templates/main/reply.html
+++ b/brutaldon/templates/main/reply.html
@@ -2,23 +2,19 @@
{% load humanize %}
{% block title %}
- Brutaldon - reply
+Brutaldon - reply
{% endblock %}
{% 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 %}
-
-
-
- {% include "main/post_partial.html" %}
-
+
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 %}
+
+
+ {% include "main/post_partial.html" %}
+
{% endblock %}