shirt statistics
This commit is contained in:
parent
493a29ea88
commit
8c2157c546
|
@ -125,6 +125,14 @@ function admin_active() {
|
||||||
|
|
||||||
$matched_users[] = $usr;
|
$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(
|
return page(array(
|
||||||
form(array(
|
form(array(
|
||||||
form_text('search', _("Search angel:"), $search),
|
form_text('search', _("Search angel:"), $search),
|
||||||
|
@ -144,7 +152,12 @@ function admin_active() {
|
||||||
'force_active' => _("Forced"),
|
'force_active' => _("Forced"),
|
||||||
'tshirt' => _("T-shirt?"),
|
'tshirt' => _("T-shirt?"),
|
||||||
'actions' => ""
|
'actions' => ""
|
||||||
), $matched_users)
|
), $matched_users),
|
||||||
|
'<h2>' . _("Given shirts") . '</h2>',
|
||||||
|
table(array(
|
||||||
|
'Size' => _("Size"),
|
||||||
|
'count' => _("Count")
|
||||||
|
), $shirt_statistics)
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue