diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/packages/details.html | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html index be7da7be..bbbef2eb 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -148,12 +148,15 @@ </tr><tr> <th>Build Date:</th> <td>{{ pkg.build_date|date:"DATETIME_FORMAT" }} UTC</td> - </tr><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 %}Unsigned{% endif %}{% endwith %}</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> + </tr><tr> <th>Signature Date:</th> <td>{{ pkg.signature.datetime|date:"DATETIME_FORMAT" }} UTC</td> + </tr>{% else %}<tr> + <th>Signed By:</th> + <td>Unsigned</td> </tr>{% endif %}<tr> <th>Last Updated:</th> <td>{{ pkg.last_update|date }}</td> |