Nicer for admin.
[cas.git] / src / ssh_keys / templates / ssh_keys / sshkey_confirm_delete.html
1 {% extends "ssh_keys/base.html" %}
2 {% load i18n %}
3
4
5 {% block accounts-content %}
6 <h1>{% trans "Confirm deleting an SSH key" %}</h1>
7
8 <p>{% trans "Are you sure you want to delete this key?" %}</p>
9
10 <form method="post">
11   {% csrf_token %}
12   <p>
13     <code class="key">{{ object.key }}</code><br>
14     {% trans "Added at" %} {{ object.created_at }}.
15     </p>
16   <button>
17     {% trans "Delete" %}
18   </button>
19 </form>
20 {% endblock %}