X-Git-Url: https://git.mdrn.pl/cas.git/blobdiff_plain/a8839fd03b111157daa7dc79ea0bab713118e942..639f17ee0781009187a564cf5679f4bd11bff43c:/src/ssh_keys/templates/ssh_keys/sshkey_list.html diff --git a/src/ssh_keys/templates/ssh_keys/sshkey_list.html b/src/ssh_keys/templates/ssh_keys/sshkey_list.html index abd1b10..92b832c 100644 --- a/src/ssh_keys/templates/ssh_keys/sshkey_list.html +++ b/src/ssh_keys/templates/ssh_keys/sshkey_list.html @@ -10,25 +10,34 @@ {% block accounts-content %} + + {% trans "Add" %} + +

{% trans "SSH keys" %}

{% for key in object_list %} -

- {{ key.comment }} ({{ key.algorithm}} {{ key.bit_length }})
- {{ key.md5_hash }} - {{ key.key }}
- {% trans "Added" %}: {{ key.created_at }}
- {% trans "Last seen" %}: {{ key.last_seen_at|default:"–" }}
- - - {% trans "Delete" %} - -

-
+
+
+ {{ key.comment }} ({{ key.algorithm}} {{ key.bit_length }})
+
+
+ {% trans "Added" %}: {{ key.created_at }}
+ {% trans "Last seen" %}: {{ key.last_seen_at|default:"–" }}
+ +
+ {{ key.md5_hash }} + {{ key.key }}
+ + {% trans "Delete" %} + +
+
+ {% empty %} +
+ {% translate "You don't have any SSH keys." %} +
{% endfor %} - - {% trans "Add" %} - {% endblock %}