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 %}