From 5bb001e15f1885aeeda8cd5d9c82a46bf65885de Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 8 Jul 2022 09:10:29 -0700 Subject: [PATCH] Show avatars in user admin view I find this helpful as a rough hueristic for how engaged a user is -- if they've never added an avatar, it's often the case that they never really got further in to using the app than just registering a username. Also, on one occassion, a user had an avatar that violated the instance ToS, which would have been handy to see at a glance in this list. --- bookwyrm/templates/settings/users/user_admin.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bookwyrm/templates/settings/users/user_admin.html b/bookwyrm/templates/settings/users/user_admin.html index 059e064db..5b2fbd15f 100644 --- a/bookwyrm/templates/settings/users/user_admin.html +++ b/bookwyrm/templates/settings/users/user_admin.html @@ -36,7 +36,7 @@ {% url 'settings-users' as url %} - @@ -61,7 +61,10 @@ {% for user in users %} - +
+ {% trans "Username" as text %} {% include 'snippets/table-sort-header.html' with field="username" sort=sort text=text %}
+ + {% include 'snippets/avatar.html' with user=user %} + {{ user|username }} {{ user.created_date }}