summaryrefslogtreecommitdiffstats
path: root/templates/devel
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2008-04-10 04:28:24 +0200
committereliott <eliott@cactuswax.net>2008-04-10 04:28:24 +0200
commit3eea31d8f2d5a4213b00eedaabfc75770aeb418f (patch)
treeb485407102154fd13e2dfdc5e9a9d4da2cbc6026 /templates/devel
parent0930d0cc7403df2bee625f8458d618aab9c767c1 (diff)
downloadarchweb-3eea31d8f2d5a4213b00eedaabfc75770aeb418f.tar.gz
archweb-3eea31d8f2d5a4213b00eedaabfc75770aeb418f.tar.xz
Changed to arches and repos in the db.
Added them to the django admin interface as well.
Diffstat (limited to 'templates/devel')
-rw-r--r--templates/devel/index.html4
1 files changed, 0 insertions, 4 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html
index d993e3b..9105537 100644
--- a/templates/devel/index.html
+++ b/templates/devel/index.html
@@ -29,14 +29,12 @@
<th width="50%">Arch</th>
<th># Packages</th>
<th># Flagged</th>
- <th># Flagnotest</th>
</tr>
{% for arch in arches %}
<tr class="{% cycle pkgr2,pkgr1 %}">
<td><strong>{{ arch.name }}</strong></td>
<td><a href="/packages/?arch={{ arch.name }}"><strong>{{ arch.count }}</strong> packages</a></td>
<td><a href="/packages/?arch={{ arch.name }}&flagged_only=y"><strong>{{ arch.flagged }}</strong> packages</a></td>
- <td><a href="/packages/?arch={{ arch.name }}&flagged_only=y"><strong>{{ arch.flagnotest }}</strong> packages</a></td>
</tr>
{% endfor %}
</table>
@@ -68,14 +66,12 @@
<th width="50%">Maintainer</th>
<th># Packages</th>
<th># Flagged</th>
- <th># Flagnotest</th>
</tr>
{% for maint in stats %}
<tr class="{% cycle pkgr2,pkgr1 %}">
<td><strong>{{ maint.0.get_full_name }}</strong></td>
<td><a href="/packages/?maint={{ maint.0.id }}"><strong>{{ maint.1 }}</strong> packages</a></td>
<td><a href="/packages/?maint={{ maint.0.id }}&flagged_only=y"><strong>{{ maint.2 }}</strong> packages</a></td>
- <td><a href="/packages/?maint={{ maint.0.id }}&flagged_only=y"><strong>{{ maint.3 }}</strong> packages</a></td>
</tr>
{% endfor %}
</table>