{{ pkg.Name }}
|
{{ pkg.Version }} |
{{ pkg.PackageBase.NumVotes }} |
{{ pkg.PackageBase.Popularity | number_format(2) }} |
{% if request.user.is_authenticated() %}
{# If I voted, display "Yes". #}
{% if pkg.PackageBase.ID in votes %}
{{ "Yes" | tr }}
{% endif %}
|
{# If I'm being notified, display "Yes". #}
{% if pkg.PackageBase.ID in notified %}
{{ "Yes" | tr }}
{% endif %}
|
{% endif %}
{{ pkg.Description or '' }} |
{% set maintainer = pkg.PackageBase.Maintainer %}
{% if maintainer %}
{{ maintainer.Username }}
{% else %}
{{ "orphan" | tr }}
{% endif %}
|
{% endfor %}