From 2b56b33e38dfe55e7ad5b572f877293e096f6ed1 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Fri, 24 Feb 2023 19:54:58 +0900 Subject: [PATCH] Show profile image on the image viewer (#520) Fixes #519 --- static/css/style.css | 1 + templates/identity/view.html | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/static/css/style.css b/static/css/style.css index 56b96b4..6f2339e 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1187,6 +1187,7 @@ h1.identity .icon { height: 80px; float: left; margin: 0 20px 0 0; + cursor: pointer; } h1.identity .emoji { diff --git a/templates/identity/view.html b/templates/identity/view.html index 297aaac..cc7326f 100644 --- a/templates/identity/view.html +++ b/templates/identity/view.html @@ -21,7 +21,14 @@ {% endif %} - + + Profile image for {{ identity.name }} + {% if request.identity %}{% include "identity/_view_menu.html" %}{% endif %}