[FastAPI] fix dashboard template

Some columns should only be shown when a user is authenticated.

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-08-25 16:34:37 -07:00
parent 6eafb457ec
commit a72ab61902
No known key found for this signature in database
GPG key ID: F7E46DED420788F3

View file

@ -6,8 +6,10 @@
<th>{{ "Version" | tr }}</th> <th>{{ "Version" | tr }}</th>
<th>{{ "Votes" | tr }}</th> <th>{{ "Votes" | tr }}</th>
<th>{{ "Popularity" | tr }}</th> <th>{{ "Popularity" | tr }}</th>
<th>{{ "Voted" | tr }}</th> {% if request.user.is_authenticated() %}
<th>{{ "Notify" | tr }}</th> <th>{{ "Voted" | tr }}</th>
<th>{{ "Notify" | tr }}</th>
{% endif %}
<th>{{ "Description" | tr }}</th> <th>{{ "Description" | tr }}</th>
<th>{{ "Maintainer" | tr }}</th> <th>{{ "Maintainer" | tr }}</th>
</tr> </tr>
@ -21,33 +23,33 @@
{{ pkg.Name }} {{ pkg.Name }}
</a> </a>
</td> </td>
{% if flagged %} <td{% if flagged %} class="flagged"{% endif %}>{{ pkg.Version }}</td>
<td class="flagged">{{ pkg.Version }}</td>
{% else %}
<td>{{ pkg.Version }}</td>
{% endif %}
<td>{{ pkg.PackageBase.NumVotes }}</td> <td>{{ pkg.PackageBase.NumVotes }}</td>
<td> <td>{{ pkg.PackageBase.Popularity | number_format(2) }}</td>
{{ pkg.PackageBase.Popularity | number_format(2) }} {% if request.user.is_authenticated() %}
</td> <td>
<td> <!-- If I voted, display "Yes". -->
<!-- If I voted, display "Yes". --> {% if request.user.voted_for(pkg) %}
{% if request.user.voted_for(pkg) %} {{ "Yes" | tr }}
{{ "Yes" | tr }} {% endif %}
{% endif %} </td>
</td> <td>
<td> <!-- If I'm being notified, display "Yes". -->
<!-- If I'm being notified, display "Yes". --> {% if request.user.notified(pkg) %}
{% if request.user.notified(pkg) %} {{ "Yes" | tr }}
{{ "Yes" | tr }} {% endif %}
{% endif %} </td>
</td> {% endif %}
<td class="wrap">{{ pkg.Description or '' }}</td> <td class="wrap">{{ pkg.Description or '' }}</td>
<td> <td>
{% set maintainer = pkg.PackageBase.Maintainer %} {% set maintainer = pkg.PackageBase.Maintainer %}
<a href="/account/{{ maintainer.Username }}"> {% if maintainer %}
{{ maintainer.Username }} <a href="/account/{{ maintainer.Username }}">
</a> {{ maintainer.Username }}
</a>
{% else %}
<span class="error">{{ "orphan" | tr }}</span>
{% endif %}
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}