summaryrefslogtreecommitdiffstats
path: root/templates/public
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2014-11-07 09:27:56 -0600
committerDan McGee <dan@archlinux.org>2014-11-07 09:27:56 -0600
commitcd22bfd73b184888df13b194ecdf6e482b36c3fc (patch)
treeb906e8ac5f48071e9814da36cb7d0a9ff521ce55 /templates/public
parent9b5eb6ab383dcd090cdbf88a250ecdfd407c3beb (diff)
downloadarchweb-cd22bfd73b184888df13b194ecdf6e482b36c3fc.tar.gz
archweb-cd22bfd73b184888df13b194ecdf6e482b36c3fc.zip
Master signing keys page improvements
* Don't show non-packagers * Don't hardcode group names in view code * Reduce number of database queries for all of the cross-signature developer name lookups Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/public')
-rw-r--r--templates/public/keys.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/public/keys.html b/templates/public/keys.html
index 54d52ab8..37d5b232 100644
--- a/templates/public/keys.html
+++ b/templates/public/keys.html
@@ -123,8 +123,8 @@
<tbody>
{% for sig in cross_signatures %}
<tr>
- <td>{% user_pgp_key_link sig.signer %}</td>
- <td>{% user_pgp_key_link sig.signee %}</td>
+ <td>{% user_pgp_key_link developer_keys sig.signer %}</td>
+ <td>{% user_pgp_key_link developer_keys sig.signee %}</td>
<td>{{ sig.created }}</td>
<td>{{ sig.expires|default:"" }}</td>
</tr>