diff options
author | Dan McGee <dan@archlinux.org> | 2010-12-07 12:56:35 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-12-07 12:56:35 -0600 |
commit | 9ea7fb8955c2d5887b8c00a1002316c25350e9c1 (patch) | |
tree | 62e57d9a02d145617db33801af479b027912d64a | |
parent | 62eb9b8031d66ac3b47c6a993b2acbdf81b42f9c (diff) |
Add repo name to recent updates package tooltip
Should handle the suggestion/question in FS#11078 in the easiest way
possible.
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | templates/public/index.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/templates/public/index.html b/templates/public/index.html index c060449c..c903b232 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -27,8 +27,10 @@ <p>Our strong community is diverse and helpful, and we pride ourselves on the range of skillsets and uses for Arch that stem from it. Please check out our <a href="https://bbs.archlinux.org" title="Arch Forums">forums</a> - and <a href="http://mailman.archlinux.org/mailman/listinfo/" title="Arch Mailing Lists">mailing lists</a> - to get your feet wet. Also glance through our <a href="https://wiki.archlinux.org" title="Arch Wiki">wiki</a> + and <a href="http://mailman.archlinux.org/mailman/listinfo/" + title="Arch Mailing Lists">mailing lists</a> + to get your feet wet. Also glance through our <a href="https://wiki.archlinux.org" + title="Arch Wiki">wiki</a> if you want to learn more about Arch.</p> <p class="readmore"><a href="{% url page-about %}" @@ -80,10 +82,10 @@ {% for update in pkg_updates %} {% with update|first as fpkg %} <tr> - <td class="pkg-name"><span class="{{ fpkg.repo.name|lower }}">{{ fpkg.pkgname }} {{ fpkg.pkgver }}-{{ fpkg.pkgrel }}</span></td> + <td class="pkg-name"><span class="{{ fpkg.repo|lower }}">{{ fpkg.pkgname }} {{ fpkg.pkgver }}-{{ fpkg.pkgrel }}</span></td> <td class="pkg-arch"> {% for pkg in update %}<a href="{{ pkg.get_absolute_url }}" - title="View package details for {{ pkg.pkgname }}">{{ pkg.arch }}</a>{% if not forloop.last %}/{% endif %}{% endfor %} + title="Details for {{ pkg.pkgname }} [{{ pkg.repo|lower }}]">{{ pkg.arch }}</a>{% if not forloop.last %}/{% endif %}{% endfor %} </td> </tr> {% endwith %} |