a4f51559bf10a81661e6500fcaa2d7ffe6854888
[cas.git] / src / ssh_keys / templates / ssh_keys / sshkey_list.html
1 {% extends "account/base.html" %}
2 {% load i18n %}
3
4
5 {% block menu %}
6   {% with menu="ssh" %}
7     {{ block.super }}
8   {% endwith %}
9 {% endblock %}
10
11
12 {% block accounts-content %}
13   <h1>{% trans "SSH keys" %}</h1>
14
15   {% for key in object_list %}
16 <p>
17   <code style='word-wrap:break-word'>{{ key.key }}</code><br>
18   {% trans "Added at" %} {{ key.created_at }}<br>
19   <a href="{% url 'ssh_keys_delete' key.id %}">
20     {% trans "Delete" %}
21   </a>
22 </p>
23 <hr>
24   {% endfor %}
25
26   <a href="{% url 'ssh_keys_add' %}">
27     {% trans "Add" %}
28   </a>
29
30 {% endblock %}