diff options
author | Dan McGee <dan@archlinux.org> | 2012-07-31 00:16:36 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-07-31 00:16:36 -0500 |
commit | c03b9c5f10b1695c4a099a578f19e09b33c6df10 (patch) | |
tree | 8910ea7dd4aebe7343196da467161b39ce01053b /templates | |
parent | 0cc369e985dd6376f0367e4b57e980ce14231796 (diff) |
feeds: add all arches for repo feed
If you wanted to see all updates regardless of architecture for
[testing] before, there wasn't really a way to do so. Add one.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/public/feeds.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/public/feeds.html b/templates/public/feeds.html index b4214b1b..f5378afb 100644 --- a/templates/public/feeds.html +++ b/templates/public/feeds.html @@ -36,6 +36,7 @@ <thead> <tr> <th></th> + <th>All Arches</th> {% for arch in arches %} <th>{{ arch }}</th> {% endfor %} @@ -44,6 +45,7 @@ <tbody> <tr> <td><strong>All Repos</strong></td> + <td><a href="/feeds/packages/" class="rss">Feed</a></td> {% for arch in arches %} <td><a href="/feeds/packages/{{ arch }}/" class="rss">Feed</a></td> {% endfor %} @@ -51,6 +53,7 @@ {% for repo in repos %} <tr> <td><strong>{{ repo }}</strong></td> + <td><a href="/feeds/packages/all/{{ repo|lower }}/" class="rss">Feed</a></td> {% for arch in arches %} <td><a href="/feeds/packages/{{ arch }}/{{ repo|lower }}/" class="rss">Feed</a></td> {% endfor %} |