mirror of https://github.com/jumpserver/jumpserver
211 lines
13 KiB
HTML
211 lines
13 KiB
HTML
|
{% extends 'base.html' %}
|
||
|
{% load mytags %}
|
||
|
{% block content %}
|
||
|
{% include 'nav_cat_bar.html' %}
|
||
|
|
||
|
<div class="wrapper wrapper-content animated fadeInRight">
|
||
|
<div class="row">
|
||
|
<div class="col-lg-12">
|
||
|
<div class="ibox float-e-margins" id="all">
|
||
|
<div class="ibox-title">
|
||
|
<h5> IDC<span class="text-info"> {{ idc.name }} </span>详细信息列表 </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>
|
||
|
<ul class="dropdown-menu dropdown-user">
|
||
|
<li><a href="#">未启用 1</a>
|
||
|
</li>
|
||
|
<li><a href="#">未启用 2</a>
|
||
|
</li>
|
||
|
</ul>
|
||
|
<a class="close-link">
|
||
|
<i class="fa fa-times"></i>
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="ibox-content">
|
||
|
{% if emg %}
|
||
|
<div class="alert alert-warning text-center">{{ emg }}</div>
|
||
|
{% endif %}
|
||
|
{% if smg %}
|
||
|
<div class="alert alert-success text-center">{{ smg }}</div>
|
||
|
{% endif %}
|
||
|
<div class="">
|
||
|
<a target="_blank" href="/jasset/host_add" class="btn btn-sm btn-primary "> 添加主机 </a>
|
||
|
</div>
|
||
|
|
||
|
<form id="contents_form" name="contents_form">
|
||
|
<table class="table table-striped table-bordered table-hover " id="editable" name="editable">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th class="text-center"><input id="checkall" type="checkbox" class="i-checks" name="checkall" value="checkall" data-editable='false' onclick="check_all('contents_form')"></th>
|
||
|
<th class="text-center" name="j_ip"> IP地址 </th>
|
||
|
<th class="text-center"> 端口号 </th>
|
||
|
<th class="text-center" name="j_type"> 登录方式 </th>
|
||
|
<th class="text-center" id="j_group_name" value="{{ idc_name }}"> 所属IDC </th>
|
||
|
<th class="text-center"> 所属业务组 </th>
|
||
|
<th class="text-center"> 是否激活 </th>
|
||
|
<th class="text-center" name="j_time"> 添加时间 </th>
|
||
|
<th class="text-center" name="j_comment"> 备注 </th>
|
||
|
<th class="text-center"> 操作 </th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for post in contacts.object_list %}
|
||
|
<tr class="gradeX">
|
||
|
<td class="text-center" name="j_id" value="{{ post.id }}" data-editable='false'><input name="id" value="{{ post.id }}" type="checkbox" class="i-checks"></td>
|
||
|
<td class="text-center" name="j_ip"> {{ post.ip }} </td>
|
||
|
<td class="text-center" name="j_port"> {{ post.port }} </td>
|
||
|
<td class="text-center" name="j_type"> {{ post.login_type|get_login_type }} </td>
|
||
|
<td class="text-center" name="j_idc"> {{ post.idc.name }} </td>
|
||
|
<td class="text-center" name="j_dept">{{ post.dept.all | group_str2 }}</td>
|
||
|
<td class="text-center" name="j_group">{{ post.bis_group.all | group_str2_all }}</td>
|
||
|
<td class="text-center" name="j_active"> {{ post.is_active|bool2str }} </td>
|
||
|
<td class="text-center" name="j_comment"> {{ post.comment }} </td>
|
||
|
<td class="text-center" data-editable='false'>
|
||
|
<a href="/jasset/host_detail/?id={{ post.id }}" class="btn btn-xs btn-primary">详情</a>
|
||
|
{% ifnotequal session_role_id 0 %}
|
||
|
<a href="/jasset/host_edit/?id={{ post.id }}" class="btn btn-xs btn-info">编辑</a>
|
||
|
<a href="/jasset/host_del/{{ post.id }}" class="btn btn-xs btn-danger">删除</a>
|
||
|
{% endifnotequal %}
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<div class="row">
|
||
|
<div class="col-sm-6">
|
||
|
<input type="button" id="del_button" class="btn btn-danger btn-sm" name="del_button" value="删除" onclick="del('contents_form')" />
|
||
|
<input type="button" id="alter_button" class="btn btn-warning btn-sm" name="alter_button" value="修改" onclick="alter('contents_form')" />
|
||
|
</div>
|
||
|
<div class="col-sm-6">
|
||
|
<div class="dataTables_paginate paging_simple_numbers" id="editable_paginate">
|
||
|
<ul class="pagination" style="margin-top: 0; float: right">
|
||
|
{% if keyword %}
|
||
|
{% if contacts.has_previous %}
|
||
|
<li class="paginate_button previous" aria-controls="editable" tabindex="0" id="editable_previous">
|
||
|
<a href="?keyword={{ keyword }}&page={{ contacts.previous_page_number }}">Previous</a>
|
||
|
</li>
|
||
|
{% else %}
|
||
|
<li class="paginate_button previous disabled" aria-controls="editable" tabindex="0" id="editable_previous">
|
||
|
<a href="#">Previous</a>
|
||
|
</li>
|
||
|
{% endif %}
|
||
|
{% ifequal show_first 1 %}
|
||
|
<li class="paginate_button" aria-controls="editable" tabindex="0"><a href="?keyword={{ keyword }}&page=1&id={{ idc.id }}" title="第1页">1...</a></li>
|
||
|
{% endifequal %}
|
||
|
{% for page in page_range %}
|
||
|
{% ifequal current_page page %}
|
||
|
<li class="paginate_button active" aria-controls="editable" tabindex="0"><a href="?keyword={{ keyword }}&page={{ page }}&id={{ idc.id }}" title="第{{ page }}页">{{ page }}</a></li>
|
||
|
{% else %}
|
||
|
<li class="paginate_button" aria-controls="editable" tabindex="0"><a href="?keyword={{ keyword }}&page={{ page }}&id={{ idc.id }}" title="第{{ page }}页">{{ page }}</a></li>
|
||
|
{% endifequal %}
|
||
|
{% endfor %}
|
||
|
{% ifequal show_end 1 %}
|
||
|
<li class="paginate_button" aria-controls="editable" tabindex="0"><a href="?keyword={{ keyword }}&page={{ p.num_pages }}&id={{ idc.id }}" title="第{{ page }}页">...{{ p.num_pages }}</a></li>
|
||
|
{% endifequal %}
|
||
|
{% if contacts.has_next %}
|
||
|
<li class="paginate_button next" aria-controls="editable" tabindex="0" id="editable_next">
|
||
|
<a href="?keyword={{ keyword }}&page={{ contacts.next_page_number }}&id={{ idc.id }}">Next</a>
|
||
|
</li>
|
||
|
{% else %}
|
||
|
<li class="paginate_button next disabled" aria-controls="editable" tabindex="0" id="editable_next">
|
||
|
<a href="#">Next</a>
|
||
|
</li>
|
||
|
{% endif %}
|
||
|
|
||
|
{% else %}
|
||
|
{% if contacts.has_previous %}
|
||
|
<li class="paginate_button previous" aria-controls="editable" tabindex="0" id="editable_previous">
|
||
|
<a href="?page={{ contacts.previous_page_number }}&id={{ idc.id }}">Previous</a>
|
||
|
</li>
|
||
|
{% else %}
|
||
|
<li class="paginate_button previous disabled" aria-controls="editable" tabindex="0" id="editable_previous">
|
||
|
<a href="#">Previous</a>
|
||
|
</li>
|
||
|
{% endif %}
|
||
|
{% ifequal show_first 1 %}
|
||
|
<li class="paginate_button" aria-controls="editable" tabindex="0"><a href="?page=1&id={{ idc.id }}" title="第1页">1...</a></li>
|
||
|
{% endifequal %}
|
||
|
{% for page in page_range %}
|
||
|
{% ifequal current_page page %}
|
||
|
<li class="paginate_button active" aria-controls="editable" tabindex="0"><a href="?page={{ page }}&id={{ idc.id }}" title="第{{ page }}页">{{ page }}</a></li>
|
||
|
{% else %}
|
||
|
<li class="paginate_button" aria-controls="editable" tabindex="0"><a href="?page={{ page }}&id={{ idc.id }}" title="第{{ page }}页">{{ page }}</a></li>
|
||
|
{% endifequal %}
|
||
|
{% endfor %}
|
||
|
{% ifequal show_end 1 %}
|
||
|
<li class="paginate_button" aria-controls="editable" tabindex="0"><a href="?page={{ p.num_pages }}&id={{ idc.id }}" title="第{{ page }}页">...{{ p.num_pages }}</a></li>
|
||
|
{% endifequal %}
|
||
|
{% if contacts.has_next %}
|
||
|
<li class="paginate_button next" aria-controls="editable" tabindex="0" id="editable_next">
|
||
|
<a href="?page={{ contacts.next_page_number }}&id={{ idc.id }}">Next</a>
|
||
|
</li>
|
||
|
{% else %}
|
||
|
<li class="paginate_button next disabled" aria-controls="editable" tabindex="0" id="editable_next">
|
||
|
<a href="#">Next</a>
|
||
|
</li>
|
||
|
{% endif %}
|
||
|
{% endif %}
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<script>
|
||
|
$(document).ready(function(){
|
||
|
$('#editable').editableTableWidget();
|
||
|
});
|
||
|
|
||
|
function alter(form) {
|
||
|
selectData = GetTableDataBox();
|
||
|
if (selectData[1] != 0) {
|
||
|
$.ajax({
|
||
|
type: "post",
|
||
|
url: "/jasset/host_edit/batch/",
|
||
|
data: {"editable": selectData[0], "len_table": selectData[1]},
|
||
|
success: function (data) {
|
||
|
alert("修改成功");
|
||
|
window.open("/jasset/host_list/", "_self");
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function del(form) {
|
||
|
var checkboxes = document.getElementById(form);
|
||
|
var id_list = {};
|
||
|
var group_name = $('#j_group_name').attr("value");
|
||
|
console.log(group_name);
|
||
|
var j = 0;
|
||
|
for (var i = 0; i < checkboxes.elements.length; i++) {
|
||
|
if (checkboxes.elements[i].type == "checkbox" && checkboxes.elements[i].checked == true && checkboxes.elements[i].value != "checkall") {
|
||
|
id_list[j] = checkboxes.elements[i].value;
|
||
|
j++;
|
||
|
}
|
||
|
}
|
||
|
if (confirm("确定从该IDC中删除")) {
|
||
|
$.ajax({
|
||
|
type: "POST",
|
||
|
url: "/jasset/host_del/multi/",
|
||
|
data: {"id_list": id_list, "len_list": j, "group_name": group_name},
|
||
|
success: function (data) {
|
||
|
window.open(window.location.href, "_self");
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
{% endblock %}
|