mirror of https://github.com/jumpserver/jumpserver
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
|
{% load mytags %}
|
||
|
<html>
|
||
|
<head>
|
||
|
{% include 'link_css.html' %}
|
||
|
|
||
|
<style type="text/css">
|
||
|
body
|
||
|
{
|
||
|
background: #FFFFFF;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="row">
|
||
|
<div class="contact-box">
|
||
|
<h2 class="text-center">{{ user.name }} 授权详情</h2>
|
||
|
<div class="ibox-content">
|
||
|
|
||
|
<table class="table table-striped table-bordered table-hover " id="editable" >
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th class="text-center">主机</th>
|
||
|
<th class="text-center">端口</th>
|
||
|
<th class="text-center">登录方式</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for asset in assets %}
|
||
|
<tr class="gradeX">
|
||
|
<td class="text-center">{{ asset.ip }}</td>
|
||
|
<td class="text-center">{{ asset.port }}</td>
|
||
|
<td class="text-center">{{ asset.login_type }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|