mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
{% 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> |