summaryrefslogtreecommitdiffstats
path: root/templates/devel/index.html
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2008-04-05 22:27:10 +0200
committereliott <eliott@cactuswax.net>2008-04-05 22:27:10 +0200
commit5f48dda94b593feefd906a7aa495427c870d6db9 (patch)
tree4d3fcd300f9e747b77ae41922ec943f1e9939faa /templates/devel/index.html
parent1bac739c5cbf13163072d6929c43f686c4a828c9 (diff)
downloadarchweb-5f48dda94b593feefd906a7aa495427c870d6db9.tar.gz
archweb-5f48dda94b593feefd906a7aa495427c870d6db9.tar.xz
Fix for FS#9554
Backported and modified from 'master'
Diffstat (limited to 'templates/devel/index.html')
-rw-r--r--templates/devel/index.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html
index 9105537..d993e3b 100644
--- a/templates/devel/index.html
+++ b/templates/devel/index.html
@@ -29,12 +29,14 @@
<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>
@@ -66,12 +68,14 @@
<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>