diff --git a/zezere/templates/portal/sshkeys.html b/zezere/templates/portal/sshkeys.html index 80e2984..ec407e4 100644 --- a/zezere/templates/portal/sshkeys.html +++ b/zezere/templates/portal/sshkeys.html @@ -7,46 +7,50 @@ {% block content %}
-

Your SSH Keys:

-{% if not sshkeys %} -

No SSH key saved.

-{% else %} - - - - - - - - {% for sshkey in sshkeys %} - - - - +

Saved SSH Keys

+
+ {% if not sshkeys %} +

No SSH key saved.

+ {% else %} + {% for sshkey in sshkeys %} +
+
+
+

🗝

+
+
+ {{ sshkey.title }}
+ {{ sshkey.key }}
+ + Added on {{ sshkey.date }} +
+
+
+ {% csrf_token %} + + + +
-
- - {% endfor %} -
TitleKeyDateActions
{{ sshkey.title }}{{ sshkey.key }}{{ sshkey.date }} -
- {% csrf_token %} - - -
-
-{% endif %} -

-
-
-

Add a new key:

-
- {% csrf_token %} - Title:
-
- Key contents:
-
- -
-
+
+ + + {% endfor %} + {% endif %} + +
+

Add new key

+
+
+ {% csrf_token %} + Title:
+
+
+ Key contents:
+
+
+ +
+
{% endblock %}