From 8c2157c5462ef27c1b9c587ae0b112ea1925b7db Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Mon, 30 Dec 2013 15:40:07 +0100 Subject: shirt statistics --- includes/pages/admin_active.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/includes/pages/admin_active.php b/includes/pages/admin_active.php index 41fa69a8..ac8a53c2 100644 --- a/includes/pages/admin_active.php +++ b/includes/pages/admin_active.php @@ -125,6 +125,14 @@ function admin_active() { $matched_users[] = $usr; } + + $shirt_statistics = sql_select(" + SELECT `Size`, count(`Size`) AS `count` + FROM `User` + WHERE `Tshirt`=1 + GROUP BY `Size` + ORDER BY `count` DESC"); + return page(array( form(array( form_text('search', _("Search angel:"), $search), @@ -144,7 +152,12 @@ function admin_active() { 'force_active' => _("Forced"), 'tshirt' => _("T-shirt?"), 'actions' => "" - ), $matched_users) + ), $matched_users), + '

' . _("Given shirts") . '

', + table(array( + 'Size' => _("Size"), + 'count' => _("Count") + ), $shirt_statistics) )); } ?> -- cgit v1.2.3-54-g00ecf