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 %}