mirror of https://github.com/jumpserver/jumpserver
75 lines
3.3 KiB
HTML
75 lines
3.3 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>
|
|
<link href="{% static "css/plugins/datepicker/datepicker3.css" %}" rel="stylesheet">
|
|
{% 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 method="post" class="form-horizontal" action="" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<h3>{% trans 'Info' %}</h3>
|
|
{% bootstrap_field form.name layout="horizontal" %}
|
|
{% bootstrap_field form.remote_addr layout="horizontal" %}
|
|
{# {% bootstrap_field form.ssh_port layout="horizontal" %}#}
|
|
{# {% bootstrap_field form.http_port layout="horizontal" %}#}
|
|
{% bootstrap_field form.command_storage layout="horizontal" %}
|
|
{% bootstrap_field form.replay_storage layout="horizontal" %}
|
|
|
|
<div class="hr-line-dashed"></div>
|
|
<h3>{% trans 'Other' %}</h3>
|
|
{% bootstrap_field form.comment layout="horizontal" %}
|
|
<div class="hr-line-dashed"></div>
|
|
<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 src="{% static 'js/plugins/datepicker/bootstrap-datepicker.js' %}"></script>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$('.select2').select2();
|
|
|
|
$('.input-group.date').datepicker({
|
|
format: "yyyy-mm-dd",
|
|
todayBtn: "linked",
|
|
keyboardNavigation: false,
|
|
forceParse: false,
|
|
calendarWeeks: true,
|
|
autoclose: true
|
|
});
|
|
})
|
|
</script>
|
|
{% endblock %}
|