userkey_detail.html 293 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{% if action == 'add' %}
<h1>Add SSH Key</h1>
{% else %}
<h1>Edit SSH Key</h1>
{% endif %}

{% if error_message %}
<p><strong>{{ error_message }}</strong></p>
{% endif %}

<form action="" method="post">
{% csrf_token %}
<table>
{{ form }}
</table>
<input type="submit" value="Save" />
</form>