diff --git a/templates/packages/details.html b/templates/packages/details.html index af67ca43..fb9d9d97 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -86,7 +86,7 @@

Versions Elsewhere

{% with pkg.split_packages as splits %}{% if splits %} Split Packages: - {% for s in splits %}{% pkg_details_link s %}
{% endfor %} + {% for s in splits %}{% pkg_details_link s %}{% if not forloop.last %}, {% endif %}{% endfor %} {% endif %}{% endwith %} {% else %} @@ -109,34 +109,33 @@

Versions Elsewhere

title="Visit the website for {{ pkg.pkgname }}">{{ pkg.url|url_unquote }}{% endif %} License(s): - {{ pkg.licenses.all|join:", " }} + {{ pkg.licenses.all|join:", " }} {% with pkg.groups.all as groups %}{% if groups %} Groups: - {% for g in groups %} + {% for g in groups %} {{ g.name }}
- {% endfor %} + title="Group details for {{ g.name }}">{{ g.name }}{% if not forloop.last %}, {% endif %}{% endfor %} {% endif %}{% endwith %} {% with pkg.provides.all as provides %}{% if provides %} Provides: - {% for item in provides %}{{ item }}
{% endfor %} + {{ provides|join:", " }} {% endif %}{% endwith %} {% with pkg.conflicts.all as conflicts %}{% if conflicts %} Conflicts: - {% for item in conflicts %}{{ item }}
{% endfor %} + {{ conflicts|join:", " }} {% endif %}{% endwith %} {% with pkg.replaces.all as replaces %}{% if replaces %} Replaces: - {% for item in replaces %}{{ item }}
{% endfor %} + {{ replaces|join:", " }} {% endif %}{% endwith %}