<ul class="list-group mb-3">
{% for key in account.ssh_keys %}
<li class="list-group-item">
- <h5 class="mb-1">
+ <h5 class="mb-3">
<a class="text-dark" href="/users/{{ account.uid }}/ssh-keys/{{ key.hash_md5() }}">
{{ key.comment or _("%s Key") % key.key_type.decode() }}
</a>
</h5>
- {% for h in (key.hash_md5(), key.hash_sha256(), key.hash_sha512()) %}
- <p class="text-monospace small text-truncate mb-0">{{ h }}</p>
- {% end %}
+ <p class="text-monospace small text-truncate">
+ {% for h in (key.hash_md5(), key.hash_sha256(), key.hash_sha512()) %}
+ {{ h }}<br>
+ {% end %}
+ </p>
{% if key.options %}
<p class="my-1">{{ _("Options") }}</p>