From 981d3614b984da47fa9b50f7cdf6655086041312 Mon Sep 17 00:00:00 2001 From: anomny Date: Mon, 3 Nov 2025 20:37:37 +0100 Subject: [PATCH] Show the total user count --- src/Views/Home/Users.cshtml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/Views/Home/Users.cshtml b/src/Views/Home/Users.cshtml index 3e3ec25..b41b72f 100644 --- a/src/Views/Home/Users.cshtml +++ b/src/Views/Home/Users.cshtml @@ -14,11 +14,18 @@

@T["Users"]

- -
+ +
+
+ @Model.TotalUsers @T["users"] @T["total"] + @if (Model.TotalPages > 1) + { + | @T["Page"] @Model.CurrentPage @T["of"] @Model.TotalPages + } +