diff options
author | Dan McGee <dan@archlinux.org> | 2010-02-04 20:44:46 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-02-05 17:03:35 -0600 |
commit | b2f33457f646c9340059d4ab02b5b7280dbeff9d (patch) | |
tree | c0957a7592656144bb2f31342f455812f52036a3 /templates/public/index.html | |
parent | 6fe8aec0abdfe284439e9d3adda85da8e5c3825b (diff) |
Make recent updates group multiple architectures
It isn't the most elegant operation in the world, but attempt to only show
one line per package, grouping by architecture if multiple were updated in
the same go. This makes the recent packages view a bit more useful as a
heads up view. Implements FS#17304.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/public/index.html')
-rw-r--r-- | templates/public/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/public/index.html b/templates/public/index.html index 0bc0af45..e708e4e7 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -60,7 +60,7 @@ {% for pkg in pkg_updates %} <tr> <td><a href="{{ pkg.get_absolute_url }}" class="{{ pkg.repo.name|lower }}">{{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}</a></td> - <td style="text-align:right">{{ pkg.arch.name }}</td> + <td style="text-align:right">{{ pkg.allarches }}</td> </tr> {% endfor %} <tr> |