diff options
author | Andrew Godwin | 2022-12-12 07:22:11 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-12 11:56:49 -0700 |
commit | 8ffe4bc1453660c1f211496074ebcc68c924327e (patch) | |
tree | 7503fdcd6aafd32e9ec75dc7190699e004cf2935 /templates/base.html | |
parent | 35a45f1c55fba69d690929c9420df565e7c5efcc (diff) | |
download | takahe-8ffe4bc1453660c1f211496074ebcc68c924327e.tar.gz takahe-8ffe4bc1453660c1f211496074ebcc68c924327e.tar.bz2 takahe-8ffe4bc1453660c1f211496074ebcc68c924327e.zip |
A better way of handling URIs between local/remote
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index df8ebdf..4614223 100644 --- a/templates/base.html +++ b/templates/base.html @@ -48,7 +48,7 @@ <img src="{% static "img/unknown-icon-128.png" %}" title="No identity selected"> {% else %} {{ request.identity.username }} - <img src="{{ request.identity.local_icon_url }}" title="{{ request.identity.handle }}"> + <img src="{{ request.identity.local_icon_url.relative }}" title="{{ request.identity.handle }}"> {% endif %} </a> {% else %} |