aurweb/web/template/stats/user_table.php
canyonknight d23a870671 user_table.php: Remove unused link parameter
Signed-off-by: canyonknight <canyonknight@gmail.com>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2013-01-19 12:21:12 +01:00

21 lines
492 B
PHP

<?php
$username = username_from_sid($_COOKIE["AURSID"]);
?>
<h3><?= __("My Statistics"); ?></h3>
<table>
<tr>
<td>
<a href="<?= get_uri('/packages/'); ?>?SeB=m&amp;K=<?= $username; ?>">
<?= __("Packages in unsupported"); ?></a>
</td>
<td><?= $maintainer_unsupported_count; ?></td>
</tr>
<tr>
<td>
<a href="<?= get_uri('/packages/'); ?>?SeB=m&amp;outdated=on&amp;K=<?= $username; ?>"><?= __("Out of Date"); ?></a>
</td>
<td><?= $flagged_outdated ?></td>
</tr>
</table>