{% if request.user.is_authenticated() %} {% endif %} {% for pkg in packages %} {% set flagged = pkg.PackageBase.OutOfDateTS %} {{ pkg.Version }} {% if request.user.is_authenticated() %} {% endif %} {% endfor %}
{{ "Name" | tr }} {{ "Version" | tr }} {{ "Votes" | tr }} {{ "Popularity" | tr }}{{ "Voted" | tr }} {{ "Notify" | tr }}{{ "Description" | tr }} {{ "Maintainer" | tr }}
{{ pkg.Name }} {{ pkg.PackageBase.NumVotes }} {{ pkg.PackageBase.Popularity | number_format(2) }} {# 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 %} {{ pkg.Description or '' }} {% set maintainer = pkg.PackageBase.Maintainer %} {% if maintainer %} {{ maintainer.Username }} {% else %} {{ "orphan" | tr }} {% endif %}