aurweb/web/template/stats/general_stats_table.php
canyonknight d2480e8b9d Overhaul to stat tables to match archweb
* Move stat tables into widget boxes to match archweb
* Remove old span styles
* Clean-up XHTML formatting
* Minor whitespace fix

Signed-off-by: canyonknight <canyonknight@gmail.com>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2012-07-06 11:26:25 +02:00

36 lines
944 B
PHP

<h3><?php echo __("Statistics") ?></h3>
<table>
<tr>
<td><?php print __("Packages"); ?></td>
<td><?php print $unsupported_count; ?></td>
</tr>
<tr>
<td><?php print __("Orphan Packages"); ?></td>
<td><?php print $orphan_count; ?></td>
</tr>
<tr>
<td><?php print __("Packages added in the past 7 days"); ?></td>
<td><?php print $add_count; ?></td>
</tr>
<tr>
<td><?php print __("Packages updated in the past 7 days"); ?></td>
<td><?php print $update_count; ?></td>
</tr>
<tr>
<td><?php print __("Packages updated in the past year"); ?></td>
<td><?php print $update_year_count; ?></td>
</tr>
<tr>
<td><?php print __("Packages never updated"); ?></td>
<td><?php print $never_update_count; ?></td>
</tr>
<tr>
<td><?php print __("Registered Users"); ?></td>
<td><?php print $user_count; ?></td>
</tr>
<tr>
<td><?php print __("Trusted Users"); ?></td>
<td><?php print $tu_count; ?></td>
</tr>
</table>