jumpserver/templates/juser/group_list.html

88 lines
6.2 KiB
HTML
Raw Normal View History

2015-01-09 14:10:38 +00:00
{% 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>
2015-01-09 14:19:05 +00:00
<th>
<div class="icheckbox_square-green" style="position: relative;">
<input type="checkbox" checked="" class="i-checks" name="input[]" style="position: absolute; opacity: 0;">
<ins class="iCheck-helper" style="position: absolute; top: 0%; left: 0%; display: block; width: 100%; height: 100%; margin: 0px; padding: 0px; border: 0px; opacity: 0; background: rgb(255, 255, 255);"></ins>
</div>
</th>
<th>ID</th>
<th>组名</th>
<th>备注</th>
2015-01-09 14:10:38 +00:00
</tr>
</thead>
<tbody>
<tr>
2015-01-09 14:19:05 +00:00
<td>
<div class="icheckbox_square-green" style="position: relative;">
<input type="checkbox" checked="" class="i-checks" name="input[]" style="position: absolute; opacity: 0;">
<ins class="iCheck-helper" style="position: absolute; top: 0%; left: 0%; display: block; width: 100%; height: 100%; margin: 0px; padding: 0px; border: 0px; opacity: 0; background: rgb(255, 255, 255);"></ins>
</div>
</td>
2015-01-09 14:10:38 +00:00
<td><span class="pie" style="display: none;">0.52,1.041</span><svg class="peity" height="16" width="16"><path d="M 8 8 L 8 0 A 8 8 0 0 1 14.933563796318165 11.990700825968545 Z" fill="#1ab394"></path><path d="M 8 8 L 14.933563796318165 11.990700825968545 A 8 8 0 1 1 7.999999999999998 0 Z" fill="#d7d7d7"></path></svg></td>
<td>Samantha</td>
<td class="text-navy"> <i class="fa fa-level-up"></i> 40% </td>
</tr>
<tr>
2015-01-09 14:19:05 +00:00
<td>
<div class="icheckbox_square-green" style="position: relative;">
<input type="checkbox" checked="" class="i-checks" name="input[]" style="position: absolute; opacity: 0;">
<ins class="iCheck-helper" style="position: absolute; top: 0%; left: 0%; display: block; width: 100%; height: 100%; margin: 0px; padding: 0px; border: 0px; opacity: 0; background: rgb(255, 255, 255);"></ins>
</div>
</td>
2015-01-09 14:10:38 +00:00
<td>2</td>
<td><span class="pie" style="display: none;">226,134</span><svg class="peity" height="16" width="16"><path d="M 8 8 L 8 0 A 8 8 0 1 1 2.2452815972907922 13.55726696367198 Z" fill="#1ab394"></path><path d="M 8 8 L 2.2452815972907922 13.55726696367198 A 8 8 0 0 1 7.999999999999998 0 Z" fill="#d7d7d7"></path></svg></td>
<td>Jacob</td>
<td class="text-warning"> <i class="fa fa-level-down"></i> -20% </td>
</tr>
<tr>
2015-01-09 14:19:05 +00:00
<td>
<div class="icheckbox_square-green" style="position: relative;">
<input type="checkbox" checked="" class="i-checks" name="input[]" style="position: absolute; opacity: 0;">
<ins class="iCheck-helper" style="position: absolute; top: 0%; left: 0%; display: block; width: 100%; height: 100%; margin: 0px; padding: 0px; border: 0px; opacity: 0; background: rgb(255, 255, 255);"></ins>
</div>
</td>
2015-01-09 14:10:38 +00:00
<td>3</td>
<td><span class="pie" style="display: none;">0.52/1.561</span><svg class="peity" height="16" width="16"><path d="M 8 8 L 8 0 A 8 8 0 0 1 14.933563796318165 11.990700825968545 Z" fill="#1ab394"></path><path d="M 8 8 L 14.933563796318165 11.990700825968545 A 8 8 0 1 1 7.999999999999998 0 Z" fill="#d7d7d7"></path></svg></td>
<td>Damien</td>
<td class="text-navy"> <i class="fa fa-level-up"></i> 26% </td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
{% endblock %}