Files
jumpserver/templates/juser/group_list.html
guanghongwei 662c48ed37 group_list޸
2015-01-10 12:07:15 +08:00

63 lines
2.7 KiB
HTML

{% extends 'base.html' %}
{% block content %}
{% include 'nav_cat_bar.html' %}
<div class="wrapper wrapper-content animated fadeInRight">
<div class="row">
<div class="col-lg-10">
<div class="ibox float-e-margins">
<div class="ibox-title">
<h5>属组信息 <small> show group info.</small></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" style="display: block;">
<table class="table table-hover">
<thead>
<tr>
<th>
<div class="radio i-checks">
<input type="checkbox" value="1" name="j_is_active" checked>
</div>
</th>
<th>ID</th>
<th>组名</th>
<th>备注</th>
</tr>
</thead>
<tbody>
{% for group in groups %}
<tr>
<td>
<div class="radio i-checks">
<input type="checkbox" value="1" name="j_is_active" checked>
</div>
</td>
<td>{{ group.id }}</td>
<td>{{ group.name }}</td>
<td>{{ group.comment }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
{% endblock %}