diff options
author | Andrew Godwin | 2022-11-17 08:21:42 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-17 12:21:44 -0700 |
commit | f5eafb0ca0af3ed064202abbe99bfbeef8bbb74d (patch) | |
tree | d01453e94f371956e7e989351b51e6ed6eb42541 /templates/activities/_post.html | |
parent | 7f8e792402b66dbb4a721be4f44306d528931b86 (diff) | |
download | takahe-f5eafb0ca0af3ed064202abbe99bfbeef8bbb74d.tar.gz takahe-f5eafb0ca0af3ed064202abbe99bfbeef8bbb74d.tar.bz2 takahe-f5eafb0ca0af3ed064202abbe99bfbeef8bbb74d.zip |
Add image/icon upload
Diffstat (limited to 'templates/activities/_post.html')
-rw-r--r-- | templates/activities/_post.html | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/templates/activities/_post.html b/templates/activities/_post.html index 9d8db3b..14b1cbf 100644 --- a/templates/activities/_post.html +++ b/templates/activities/_post.html @@ -2,11 +2,7 @@ {% load activity_tags %} <div class="post" data-takahe-id="{{ post.id }}"> - {% if post.author.icon_uri %} - <img src="{{post.author.icon_uri}}" class="icon"> - {% else %} - <img src="{% static "img/unknown-icon-128.png" %}" class="icon"> - {% endif %} + <img src="{{ post.author.local_icon_url }}" class="icon"> <time> {% if post.visibility == 0 %} |