summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2013-02-03 14:40:41 -0600
committerDan McGee <dan@archlinux.org>2013-02-03 14:40:41 -0600
commitd63a800348f81823f157ec9ed03f9985308c3ea3 (patch)
tree548c7db54c9b8ca4456d1f6c39f5d8fd7f2b2cf0 /templates
parent7e6279057a57ef44c11349e594ad392fbfce0098 (diff)
downloadarchweb-d63a800348f81823f157ec9ed03f9985308c3ea3.tar.gz
archweb-d63a800348f81823f157ec9ed03f9985308c3ea3.zip
Update user_pgp_key_link template tag to use DeveloperKey model
The first of several small updates to use the new data we have available. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-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 35bf414c..cf8ac784 100644
--- a/templates/public/keys.html
+++ b/templates/public/keys.html
@@ -124,8 +124,8 @@
<tbody>
{% for sig in cross_signatures %}
<tr>
- <td>{% user_pgp_key_link active_users sig.signer %}</td>
- <td>{% user_pgp_key_link active_users sig.signee %}</td>
+ <td>{% user_pgp_key_link sig.signer %}</td>
+ <td>{% user_pgp_key_link sig.signee %}</td>
<td>{{ sig.created }}</td>
<td>{{ sig.expires|default:"" }}</td>
</tr>