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">{{ group.name }} 授权详情</h2>
|
||
|
<div class="ibox-content">
|
||
|
|
||
|
<table class="table table-striped table-bordered table-hover " id="editable" >
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th class="text-center">ID</th>
|
||
|
<th class="text-center">主机组</th>
|
||
|
<th class="text-center">主机数量</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for asset_group in asset_groups %}
|
||
|
<tr class="gradeX">
|
||
|
<td class="text-center">{{ asset_group.id }}</td>
|
||
|
<td class="text-center">{{ asset_group.name }}</td>
|
||
|
<td class="text-center">{{ asset_group.asset_set.count }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|