mirror of https://github.com/jumpserver/jumpserver
121 lines
5.6 KiB
HTML
121 lines
5.6 KiB
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
{% load bootstrap3 %}
|
|
{% block custom_head_css_js %}
|
|
<link href="{% static 'css/plugins/select2/select2.min.css' %}" rel="stylesheet">
|
|
<script src="{% static 'js/plugins/select2/select2.full.min.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="wrapper wrapper-content animated fadeInRight">
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="ibox float-e-margins">
|
|
<div class="ibox-title">
|
|
<h5>{{ action }}</h5>
|
|
<div class="ibox-tools">
|
|
<a class="collapse-link">
|
|
<i class="fa fa-chevron-up"></i>
|
|
</a>
|
|
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
|
|
<i class="fa fa-wrench"></i>
|
|
</a>
|
|
<a class="close-link">
|
|
<i class="fa fa-times"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<form enctype="multipart/form-data" method="post" class="form-horizontal" action="" >
|
|
{% csrf_token %}
|
|
{% if form.non_field_errors %}
|
|
<div class="alert alert-danger">
|
|
{{ form.non_field_errors }}
|
|
</div>
|
|
{% endif %}
|
|
<h3>{% trans 'Basic' %}</h3>
|
|
{% bootstrap_field form.name layout="horizontal" %}
|
|
{% bootstrap_field form.username layout="horizontal" %}
|
|
{% bootstrap_field form.priority layout="horizontal" %}
|
|
{% bootstrap_field form.protocol layout="horizontal" %}
|
|
|
|
{% block auth %}
|
|
<h3>{% trans 'Auth' %}</h3>
|
|
<div class="auto-generate">
|
|
<div class="form-group">
|
|
<label for="{{ form.auto_generate_key.id_for_label }}" class="col-sm-2 control-label">{% trans 'Auto generate key' %}</label>
|
|
<div class="col-sm-8">
|
|
{{ form.auto_generate_key}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="auth-fields">
|
|
{% bootstrap_field form.password layout="horizontal" %}
|
|
{% bootstrap_field form.private_key_file layout="horizontal" %}
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="{{ form.as_push.id_for_label }}" class="col-sm-2 control-label">{% trans 'Auto push' %}</label>
|
|
<div class="col-sm-8">
|
|
{{ form.auto_push}}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
<h3>{% trans 'Other' %}</h3>
|
|
{% bootstrap_field form.sudo layout="horizontal" %}
|
|
{% bootstrap_field form.shell layout="horizontal" %}
|
|
{% bootstrap_field form.comment layout="horizontal" %}
|
|
<div class="form-group">
|
|
<div class="col-sm-4 col-sm-offset-2">
|
|
<button class="btn btn-white" type="reset">{% trans 'Reset' %}</button>
|
|
<button id="submit_button" class="btn btn-primary" type="submit">{% trans 'Submit' %}</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% block custom_foot_js %}
|
|
<script>
|
|
var auto_generate_key = '#'+'{{ form.auto_generate_key.id_for_label }}';
|
|
var protocol_id = '#' + '{{ form.protocol.id_for_label }}';
|
|
var password_id = '#' + '{{ form.password.id_for_label }}';
|
|
var private_key_id = '#' + '{{ form.private_key_file.id_for_label }}';
|
|
var sudo_id = '#' + '{{ form.sudo.id_for_label }}';
|
|
var shell_id = '#' + '{{ form.shell.id_for_label }}';
|
|
|
|
var need_change_field = [auto_generate_key, private_key_id, sudo_id, shell_id] ;
|
|
|
|
function authFieldsDisplay() {
|
|
if ($(auto_generate_key).prop('checked')) {
|
|
$('.auth-fields').addClass('hidden');
|
|
} else {
|
|
$('.auth-fields').removeClass('hidden');
|
|
}
|
|
}
|
|
|
|
function protocolChange() {
|
|
if ($(protocol_id).attr('value') === 'rdp') {
|
|
$.each(need_change_field, function (index, value) {
|
|
$(value).addClass('hidden')
|
|
});
|
|
$(password_id).removeClass('hidden')
|
|
} else {
|
|
$.each(need_change_field, function (index, value) {
|
|
$(value).removeClass('hidden')
|
|
});
|
|
}
|
|
}
|
|
$(document).ready(function () {
|
|
$('.select2').select2();
|
|
authFieldsDisplay();
|
|
protocolChange();
|
|
$(auto_generate_key).change(function () {
|
|
authFieldsDisplay();
|
|
});
|
|
})
|
|
</script>
|
|
{% endblock %} |