From d29a57233f19c1e4fad0271523415e54d51316c0 Mon Sep 17 00:00:00 2001 From: Radek Pietruszewski Date: Sat, 28 Oct 2023 15:36:19 +0200 Subject: [PATCH] Admin: Important avatar changes lmao --- webapp/templates/admin/user.html | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/webapp/templates/admin/user.html b/webapp/templates/admin/user.html index 171dd88..e0584df 100644 --- a/webapp/templates/admin/user.html +++ b/webapp/templates/admin/user.html @@ -1,5 +1,7 @@ {% extends 'basic.html' %} {% block content %} + +

User: {{ uid }}

@@ -27,7 +29,7 @@ {{ attr }} {{ attr_readable if attr_readable else '' }} - {{ value }} + {{ '(...omitted...)' if attr == 'jpegPhoto' else value }} {% endfor %} @@ -45,5 +47,17 @@ .profile-table th.profile-table-value { width: max-content; } +.profile-avatar-lmao { + width: 120px; + height: 120px; + margin: 10px 0; + border-radius: 10px; + float: right; + box-shadow: 5px 5px 0 #ddd; + transition: transform 0.2s ease-in-out; +} +.profile-avatar-lmao:hover { + transform: scale(1.2) rotate(359deg); +} {% endblock %}