diff --git a/brutaldon/templates/main/notifications.html b/brutaldon/templates/main/notifications.html index e0ddfe8..15bff67 100644 --- a/brutaldon/templates/main/notifications.html +++ b/brutaldon/templates/main/notifications.html @@ -41,7 +41,7 @@ mastodon.notifications()[0] {{ note.created_at |humane_time }} )

-{% include "main/toot_partial.html" with toot=note.status reblog=True reblog_by=note.account.acct reblog_icon=note.account.avatar %} +{% include "main/toot_partial.html" with toot=note.status reblog=True reblog_by=note.account.acct reblog_icon=note.account.avatar_static %} {% elif note.type == 'favourite' %}

@@ -58,7 +58,7 @@ mastodon.notifications()[0]

- +

diff --git a/brutaldon/templates/main/timeline.html b/brutaldon/templates/main/timeline.html index 7d4ecec..c2ed8df 100644 --- a/brutaldon/templates/main/timeline.html +++ b/brutaldon/templates/main/timeline.html @@ -23,7 +23,7 @@ Brutaldon ({{ own_acct.username }}) - {{ timeline_name }} timelime

Your {{ timeline_name }} timeline

{% for toot in toots %} {% if toot.reblog %} -{% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct 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_static %} {% 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 b94285c..97b6afd 100644 --- a/brutaldon/templates/main/toot_partial.html +++ b/brutaldon/templates/main/toot_partial.html @@ -13,7 +13,7 @@
diff --git a/brutaldon/templates/main/user.html b/brutaldon/templates/main/user.html index e09ebd2..49b8de1 100644 --- a/brutaldon/templates/main/user.html +++ b/brutaldon/templates/main/user.html @@ -109,7 +109,7 @@ Brutaldon ({{ own_acct.username }}) - {{ user.acct }} timelime {% for toot in toots %} {% if toot.reblog %} - {% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct 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_static %} {% else %} {% include "main/toot_partial.html" with toot=toot reblog=False %} {% endif %}