diff options
author | Dan McGee <dan@archlinux.org> | 2012-04-05 09:48:24 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-04-05 09:50:00 -0500 |
commit | 84f98e3e0b9ef319f501795099cc32bce1bf6a81 (patch) | |
tree | 98356d5124f8c0b699f756f9c07d4216f173ca68 /templates/packages/details.html | |
parent | ee2a587738f3e571f4e0e61153061ba6853475eb (diff) |
Show and link key_id if signer was an unknown key
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/packages/details.html')
-rw-r--r-- | templates/packages/details.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html index a066969c..5c08bf11 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -151,7 +151,7 @@ <td>{{ pkg.build_date|date:"DATETIME_FORMAT" }} UTC</td> </tr>{% if pkg.signature %}<tr> <th>Signed By:</th> - <td>{% with pkg.signer as signer %}{% if signer %}{% pgp_key_link pkg.signature.key_id signer.get_full_name %}{% else %}Unknown{% endif %}{% endwith %}</td> + <td>{% with pkg.signer as signer %}{% if signer %}{% pgp_key_link pkg.signature.key_id signer.get_full_name %}{% else %}Unknown ({% pgp_key_link pkg.signature.key_id %}){% endif %}{% endwith %}</td> </tr><tr> <th>Signature Date:</th> <td>{{ pkg.signature.datetime|date:"DATETIME_FORMAT" }} UTC</td> |