summaryrefslogtreecommitdiffstats
path: root/templates/public/feeds.html
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-04-27 16:57:08 +0200
committerDan McGee <dan@archlinux.org>2012-04-27 16:59:38 +0200
commitbaaa14dfc06cf8c381363883ebf4fd805b348e34 (patch)
treefc209714704d7aa76d2b063ad561fe795a14efd9 /templates/public/feeds.html
parent80e7d19726a95b40727b7f35b9ad80b436b14b93 (diff)
downloadarchweb-baaa14dfc06cf8c381363883ebf4fd805b348e34.tar.gz
archweb-baaa14dfc06cf8c381363883ebf4fd805b348e34.tar.xz
Flip package update feeds table orientation
Most of the time, more rows is better than more columns, and there are more repositories than architectures. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/public/feeds.html')
-rw-r--r--templates/public/feeds.html18
1 files changed, 11 insertions, 7 deletions
diff --git a/templates/public/feeds.html b/templates/public/feeds.html
index 0f80e1c..b4214b1 100644
--- a/templates/public/feeds.html
+++ b/templates/public/feeds.html
@@ -35,19 +35,23 @@
<table class="pretty2">
<thead>
<tr>
- <th>Architecture</th>
- <th>All Repos</th>
- {% for repo in repos %}
- <th>{{ repo }}</th>
+ <th></th>
+ {% for arch in arches %}
+ <th>{{ arch }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
- {% for arch in arches %}
<tr>
- <td><strong>{{ arch }}</strong></td>
+ <td><strong>All Repos</strong></td>
+ {% for arch in arches %}
<td><a href="/feeds/packages/{{ arch }}/" class="rss">Feed</a></td>
- {% for repo in repos %}
+ {% endfor %}
+ </tr>
+ {% for repo in repos %}
+ <tr>
+ <td><strong>{{ repo }}</strong></td>
+ {% for arch in arches %}
<td><a href="/feeds/packages/{{ arch }}/{{ repo|lower }}/" class="rss">Feed</a></td>
{% endfor %}
</tr>