aurweb/web/template/stats/user_table.php
Lukas Fleischer c751921aff Do not use the term "unsupported" for AUR packages
We no longer use the term [unsupported] to refer to the "repository" of
AUR packages. Update texts and variable names accordingly.

Fixes FS#45381.

Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
2015-08-08 12:59:24 +02:00

21 lines
463 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"); ?></a>
</td>
<td><?= $user_pkg_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>