mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
This puts one more toward completion of the homepage overall; we'll need to still implement the authenticated user dashboard after this. Signed-off-by: Kevin Morris <kevr@0cost.org>
27 lines
837 B
HTML
27 lines
837 B
HTML
<div id="my-stats" class="widget box">
|
|
<h3>{{ "My Statistics" | tr }}</h3>
|
|
|
|
{% set bases = request.user.maintained_bases %}
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<a href="/packages/?SeB=m&K={{ request.user.Username }}">
|
|
{{ "Packages" | tr }}
|
|
</a>
|
|
</td>
|
|
<td>{{ bases.count() }}</td>
|
|
</tr>
|
|
{% set out_of_date_packages = bases | out_of_date %}
|
|
<tr>
|
|
<td>
|
|
<a href="/packages/?SeB=m&outdated=on&K={{ request.user.Username }}">
|
|
{{ "Out of Date" | tr }}
|
|
</a>
|
|
</td>
|
|
<td>{{ out_of_date_packages.count() }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|