From 9b0b5e930a34423528a2ee2fe32dc9735489e589 Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Tue, 24 Apr 2018 09:24:06 -0400 Subject: [PATCH] Show full @reference for remote users --- brutaldon/templates/main/timeline.html | 2 +- brutaldon/templates/main/toot_partial.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/brutaldon/templates/main/timeline.html b/brutaldon/templates/main/timeline.html index 8dfd331..4361545 100644 --- a/brutaldon/templates/main/timeline.html +++ b/brutaldon/templates/main/timeline.html @@ -9,7 +9,7 @@

Your {{ timeline }} timeline

{% for toot in toots %} {% if toot.reblog %} - {% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.username reblog_icon=toot.account.avatar %} + {% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar %} {% else %} {% include "main/toot_partial.html" with toot=toot reblog=False %} {% endif %} diff --git a/brutaldon/templates/main/toot_partial.html b/brutaldon/templates/main/toot_partial.html index 618f96f..9adbf6b 100644 --- a/brutaldon/templates/main/toot_partial.html +++ b/brutaldon/templates/main/toot_partial.html @@ -17,7 +17,7 @@

{{ toot.account.display_name }} - @{{ toot.account.username }} + @{{ toot.account.acct }} {{ toot.created_at |naturaltime }} {% if reblog %}