mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Some columns should only be shown when a user is authenticated. Signed-off-by: Kevin Morris <kevr@0cost.org>
57 lines
2.2 KiB
HTML
57 lines
2.2 KiB
HTML
|
|
<table {% if table_id %}id="{{ table_id }}"{% endif %} class="results">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ "Name" | tr }}</th>
|
|
<th>{{ "Version" | tr }}</th>
|
|
<th>{{ "Votes" | tr }}</th>
|
|
<th>{{ "Popularity" | tr }}</th>
|
|
{% if request.user.is_authenticated() %}
|
|
<th>{{ "Voted" | tr }}</th>
|
|
<th>{{ "Notify" | tr }}</th>
|
|
{% endif %}
|
|
<th>{{ "Description" | tr }}</th>
|
|
<th>{{ "Maintainer" | tr }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for pkg in packages %}
|
|
{% set flagged = pkg.PackageBase.OutOfDateTS %}
|
|
<tr>
|
|
<td>
|
|
<a href="/packages/{{ pkg.Name }}">
|
|
{{ pkg.Name }}
|
|
</a>
|
|
</td>
|
|
<td{% if flagged %} class="flagged"{% endif %}>{{ pkg.Version }}</td>
|
|
<td>{{ pkg.PackageBase.NumVotes }}</td>
|
|
<td>{{ pkg.PackageBase.Popularity | number_format(2) }}</td>
|
|
{% if request.user.is_authenticated() %}
|
|
<td>
|
|
<!-- If I voted, display "Yes". -->
|
|
{% if request.user.voted_for(pkg) %}
|
|
{{ "Yes" | tr }}
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
<!-- If I'm being notified, display "Yes". -->
|
|
{% if request.user.notified(pkg) %}
|
|
{{ "Yes" | tr }}
|
|
{% endif %}
|
|
</td>
|
|
{% endif %}
|
|
<td class="wrap">{{ pkg.Description or '' }}</td>
|
|
<td>
|
|
{% set maintainer = pkg.PackageBase.Maintainer %}
|
|
{% if maintainer %}
|
|
<a href="/account/{{ maintainer.Username }}">
|
|
{{ maintainer.Username }}
|
|
</a>
|
|
{% else %}
|
|
<span class="error">{{ "orphan" | tr }}</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|