mirror of https://github.com/jumpserver/jumpserver
60 lines
2.5 KiB
HTML
60 lines
2.5 KiB
HTML
<html>
|
|
<head>
|
|
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="/static/font-awesome/css/font-awesome.css" rel="stylesheet">
|
|
<link href="/static/css/plugins/iCheck/custom.css" rel="stylesheet">
|
|
<link href="/static/css/animate.css" rel="stylesheet">
|
|
<link href="/static/css/style.css" rel="stylesheet">
|
|
<link href="/static/css/colorbox.css" rel="stylesheet">
|
|
|
|
<!-- Mainly scripts -->
|
|
<script src="/static/js/jquery-2.1.1.js"></script>
|
|
<script src="/static/js/bootstrap.min.js"></script>
|
|
<script src="/static/js/plugins/metisMenu/jquery.metisMenu.js"></script>
|
|
<script src="/static/js/plugins/slimscroll/jquery.slimscroll.min.js"></script>
|
|
|
|
<style type="text/css">
|
|
body
|
|
{
|
|
background: #FFFFFF;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="row">
|
|
<div class="contact-box">
|
|
<h2 class="text-center">{{ offset }}主机详情</h2>
|
|
<table class="table table-striped table-bordered table-hover " id="editable" >
|
|
<thead>
|
|
<tr>
|
|
<th> IP地址 </th>
|
|
<th> 端口号 </th>
|
|
<th> 登录方式 </th>
|
|
<th> 所属IDC </th>
|
|
<th> 所属业务组 </th>
|
|
<th> 添加时间 </th>
|
|
<th> 备注 </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="gradeX">
|
|
<td> <a class="iframe" href="/jasset/{{ post.ip }}/">{{ post.ip }}</a></td>
|
|
<td> {{ post.port }} </td>
|
|
<td> {{ post.get_login_type}} </td>
|
|
<td class="center"> {{ post.idc.name }} </td>
|
|
<td class="center">
|
|
{% for group in post.bis_group.all %}
|
|
{{ group }}
|
|
{% endfor %}
|
|
</td>
|
|
<td class="center"> {{ post.date_added }} </td>
|
|
<td class="center"> {{ post.comment }} </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<a> 是否激活: {{ post.is_active }}</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |