diff options
author | Dan McGee <dan@archlinux.org> | 2012-03-24 17:10:22 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-03-24 17:10:22 -0500 |
commit | 48aec1534324ef17755a3edd2c379ff141c2b993 (patch) | |
tree | 192c82272508a4b836908c8c1f098e7f73ac0bcc /templates/devel/index.html | |
parent | 5888bdf0db3aaa38f35f4630af86edf4b07f65e2 (diff) |
Revert "Add some dev dashboard info regarding signed package count"
This reverts commit 797185faed0555efb88a1e6a18e447548a9935fd. Now that
all packages in the Arch repos are signed, this column isn't very useful
as it just reflects the total package count.
Conflicts:
packages/views.py -> packages/views/search.py
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/devel/index.html')
-rw-r--r-- | templates/devel/index.html | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html index 02019366..63d18193 100644 --- a/templates/devel/index.html +++ b/templates/devel/index.html @@ -183,7 +183,6 @@ <th class="key">Arch</th> <th># Packages</th> <th># Flagged</th> - <th># Signed</th> </tr> </thead> <tbody> @@ -196,8 +195,6 @@ <td><a href="/packages/?arch={{ arch.name }}&flagged=Flagged" title="View all flagged packages for the {{ arch.name }} architecture"> <strong>{{ arch.packages.flagged.count }}</strong> packages</a></td> - - <td><strong>{{ arch.packages.signed.count }}</strong> packages</td> </tr> {% endfor %} </tbody> @@ -216,7 +213,6 @@ <th class="key">Repository</th> <th># Packages</th> <th># Flagged</th> - <th># Signed</th> </tr> </thead> <tbody> @@ -229,7 +225,6 @@ <td><a href="/packages/?repo={{ repo.name }}&flagged=Flagged" title="View all flagged packages in the {{ repo.name }} repository"> <strong>{{ repo.packages.flagged.count }}</strong> packages</a></td> - <td><strong>{{ repo.packages.signed.count }}</strong> packages</td> </tr> {% endfor %} </tbody> |