From 5e365a73ffa179222270083572fa52ba877d3ac9 Mon Sep 17 00:00:00 2001 From: Hendrik L Date: Thu, 2 Jan 2025 12:55:04 +0100 Subject: [PATCH] show community activity and num local members --- app/templates/admin/communities.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/templates/admin/communities.html b/app/templates/admin/communities.html index 8f8f3d0e..cffa75c0 100644 --- a/app/templates/admin/communities.html +++ b/app/templates/admin/communities.html @@ -32,11 +32,13 @@ Name Topic # Posts + # Members Retention Layout Popular All Warning + {{ _('Active') }} Actions {% for community in communities.items %} @@ -45,11 +47,13 @@ !{{ community.name }}@{{ community.ap_domain }} {{ community.topic.name }} {{ community.post_count }} + {{ community.subscriptions_count }} {{ community.content_retention if community.content_retention != -1 }} {{ community.default_layout if community.default_layout }} {{ '✓'|safe if community.show_popular else '✗'|safe }} {{ '✓'|safe if community.show_all else '✗'|safe }} {{ '⚠'|safe if community.nsfw or community.nsfl or community.content_warning else ''|safe }} + {{ arrow.get(community.last_active).humanize(locale=locale) }} Edit | Delete