Add indentation to stats table

Signed-off-by: Dan McGee <dan@archlinux.org>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
Dan McGee 2011-03-30 20:48:10 -05:00 committed by Lukas Fleischer
parent 7c91c59245
commit 79ce38d271

View file

@ -1,32 +1,21 @@
<table class='boxSoft'> <table class='boxSoft'>
<tr> <tr>
<th colspan='2' class='boxSoftTitle'> <th colspan='2' class='boxSoftTitle'><span class='f3'><?php print __("Statistics") ?></span></th>
<span class='f3'><?php print __("Statistics") ?></span>
</th>
</tr> </tr>
<tr> <tr>
<td class='boxSoft'> <td class='boxSoft'><span class='f4'><?php print __("Packages in unsupported"); ?></span></td>
<span class='f4'><?php print __("Packages in unsupported"); ?></span>
</td>
<td class='boxSoft'><span class='f4'><?php print $unsupported_count; ?></span></td> <td class='boxSoft'><span class='f4'><?php print $unsupported_count; ?></span></td>
</tr> </tr>
<tr> <tr>
<td class='boxSoft'> <td class='boxSoft'><span class='f4'><?php print __("Packages added or updated in the past 7 days"); ?></span></td>
<span class='f4'><?php print __("Packages added or updated in the past 7 days"); ?></span>
</td>
<td class='boxSoft'><span class='f4'><?php print $update_count; ?></span></td> <td class='boxSoft'><span class='f4'><?php print $update_count; ?></span></td>
</tr> </tr>
<tr> <tr>
<td class='boxSoft'> <td class='boxSoft'><span class='f4'><?php print __("Registered Users"); ?></span></td>
<span class='blue'><span class='f4'><?php print __("Registered Users"); ?></span></span>
</td>
<td class='boxSoft'><span class='f4'><?php print $user_count; ?></span></td> <td class='boxSoft'><span class='f4'><?php print $user_count; ?></span></td>
</tr> </tr>
<tr> <tr>
<td class='boxSoft'> <td class='boxSoft'><span class='f4'><?php print __("Trusted Users"); ?></span></td>
<span class='f4'><?php print __("Trusted Users"); ?></span>
</td>
<td class='boxSoft'><span class='f4'><?php print $tu_count; ?></span></td> <td class='boxSoft'><span class='f4'><?php print $tu_count; ?></span></td>
</tr> </tr>
</table> </table>