diff options
Diffstat (limited to 'templates/identity')
-rw-r--r-- | templates/identity/select.html | 2 | ||||
-rw-r--r-- | templates/identity/view.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/templates/identity/select.html b/templates/identity/select.html index d63f886..b3fc41d 100644 --- a/templates/identity/select.html +++ b/templates/identity/select.html @@ -6,7 +6,7 @@ <section class="icon-menu"> {% for identity in identities %} <a class="option" href="{{ identity.urls.activate }}"> - <img src="{{ identity.local_icon_url }}"> + <img src="{{ identity.local_icon_url.relative }}"> <span class="handle"> {{ identity.name_or_handle }} <small>@{{ identity.handle }}</small> diff --git a/templates/identity/view.html b/templates/identity/view.html index 612e3d2..8d5806f 100644 --- a/templates/identity/view.html +++ b/templates/identity/view.html @@ -13,10 +13,10 @@ {% block content %} <h1 class="identity"> {% if identity.local_image_url %} - <img src="{{ identity.local_image_url }}" class="banner"> + <img src="{{ identity.local_image_url.relative }}" class="banner"> {% endif %} - <img src="{{ identity.local_icon_url }}" class="icon"> + <img src="{{ identity.local_icon_url.relative }}" class="icon"> {% if request.identity %} {% if identity == request.identity %} |