summaryrefslogtreecommitdiffstats
path: root/templates/devel/index.html
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2007-12-30 23:44:27 +0100
committereliott <eliott@cactuswax.net>2007-12-30 23:44:27 +0100
commit4fc36de2ae6537170541c199eabd8d1270a273c9 (patch)
treeec69119b50507328f9375860a66d4aeb105acab4 /templates/devel/index.html
parentf523a9d577aa88fea37ef7e4e2a9c484d14e5cde (diff)
downloadarchweb-4fc36de2ae6537170541c199eabd8d1270a273c9.tar.gz
archweb-4fc36de2ae6537170541c199eabd8d1270a273c9.tar.xz
Added alternating row coloration to make it easier to relate left to right
side items.
Diffstat (limited to 'templates/devel/index.html')
-rw-r--r--templates/devel/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html
index 0c468ce..4cd9558 100644
--- a/templates/devel/index.html
+++ b/templates/devel/index.html
@@ -26,12 +26,12 @@
<h3 class="title">Repository Package Stats</h3>
<table class="results" width="100%">
<tr>
- <th>Repository</th>
+ <th width="50%">Repository</th>
<th># Package</th>
<th># Flagged</th>
</tr>
{% for repo in repos %}
- <tr>
+ <tr class="{% cycle pkgr2,pkgr1 %}">
<td><a href="/packages/?repo={{ repo.name }}">{{ repo.name }}</a></td>
<td><strong>{{ repo.count }}</strong> packages</td>
<td><strong>{{ repo.flagged }}</strong> packages</td>
@@ -45,12 +45,12 @@
<h3 class="title">Maintainer Package Stats</h3>
<table class="results" width="100%">
<tr>
- <th>Maintainer</th>
+ <th width="50%">Maintainer</th>
<th># Package</th>
<th># Flagged</th>
</tr>
{% for maint in stats %}
- <tr>
+ <tr class="{% cycle pkgr2,pkgr1 %}">
<td><a href="/packages/?maint={{ maint.0.id }}">{{ maint.0.get_full_name }}</a></td>
<td><strong>{{ maint.1 }}</strong> packages</td>
<td><strong>{{ maint.2 }}</strong> packages</td>