From baab17ce9eea442662dfa538be6787aa370363ec Mon Sep 17 00:00:00 2001 From: Aevann Date: Mon, 4 Sep 2023 21:50:43 +0300 Subject: [PATCH] add number of users --- files/templates/userpage/followers.html | 2 +- files/templates/userpage/following.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/files/templates/userpage/followers.html b/files/templates/userpage/followers.html index 103b5a968..c01615b8e 100644 --- a/files/templates/userpage/followers.html +++ b/files/templates/userpage/followers.html @@ -1,7 +1,7 @@ {% extends "default.html" %} {% block pagetitle %}@{{u.username}}'s followers{% endblock %} {% block content %} -
@{{u.username}}'s followers
+
@{{u.username}}'s followers ({{users|length}} users)
diff --git a/files/templates/userpage/following.html b/files/templates/userpage/following.html index d5a29d185..d89cfd38a 100644 --- a/files/templates/userpage/following.html +++ b/files/templates/userpage/following.html @@ -1,7 +1,7 @@ {% extends "default.html" %} {% block pagetitle %}Users followed by @{{u.username}}{% endblock %} {% block content %} -
Users followed by @{{u.username}}
+
Users followed by @{{u.username}} ({{users|length}} users)