Jan Dittberner
0c7bb79109
- implement new form osusers.forms.AddSshPublicKeyForm - move message texts from osusers.admin to osusers.forms - add new view osusers.views.AddSshPublicKey - add new URL patter 'add_ssh_key' to osusers.urls - add new template osusers/sshpublickey_create.html - link from hosting package detail template to 'add_ssh_key' - add changelog entry for new feature
30 lines
1,021 B
HTML
30 lines
1,021 B
HTML
{% extends "osusers/base.html" %}
|
|
{% load i18n crispy_forms_tags %}
|
|
|
|
{% block title %}{{ block.super }} - {% spaceless %}
|
|
{% if user == customer %}
|
|
{% blocktrans %}Add new SSH Public Key{% endblocktrans %}
|
|
{% else %}
|
|
{% blocktrans with full_name=customer.get_full_name %}Add a new SSH Public Key for Operating System User {{ osuser }} of Customer {{ full_name }}{% endblocktrans %}
|
|
{% endif %}
|
|
{% endspaceless %}{% endblock title %}
|
|
|
|
{% block page_title %}{% spaceless %}
|
|
{% if user == customer %}
|
|
{% blocktrans %}Add new SSH Public Key{% endblocktrans %}
|
|
{% else %}
|
|
{% blocktrans with full_name=customer.get_full_name %}Add a new SSH Public Key <small>for Operating System User {{ osuser }} of Customer {{ full_name }}</small>{% endblocktrans %}
|
|
{% endif %}
|
|
{% endspaceless %}{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
{% crispy form %}
|
|
{% endblock content %}
|
|
|
|
{% block extra_js %}
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('textarea').first().focus();
|
|
});
|
|
</script>
|
|
{% endblock extra_js %}
|