From 9825b67f574964fb14dc2a46c47ac52436b058c9 Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Fri, 7 Dec 2018 08:57:19 -0500 Subject: [PATCH] Make toots hint more strongly when they are part of a thread. --- brutaldon/templates/main/toot_partial.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/brutaldon/templates/main/toot_partial.html b/brutaldon/templates/main/toot_partial.html index f9ed4af..9d16ddc 100644 --- a/brutaldon/templates/main/toot_partial.html +++ b/brutaldon/templates/main/toot_partial.html @@ -139,7 +139,7 @@ {% if toot.replies_count > 0 %} - Reply+ + Reply {% else %} @@ -198,9 +198,15 @@ {% endif %} {{ toot.visibility }}    + {% if toot.in_reply_to_id or toot.replies_count > 0 %} + + thread + + {% else %} thread + {% endif %} {% endif %}