diff options
author | Dan McGee <dan@archlinux.org> | 2013-02-03 14:40:41 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-02-03 14:40:41 -0600 |
commit | d63a800348f81823f157ec9ed03f9985308c3ea3 (patch) | |
tree | 548c7db54c9b8ca4456d1f6c39f5d8fd7f2b2cf0 /templates/public | |
parent | 7e6279057a57ef44c11349e594ad392fbfce0098 (diff) |
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/public')
-rw-r--r-- | templates/public/keys.html | 4 |
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> |