mirror of
https://github.com/lwch/natpass.git
synced 2024-04-21 12:41:54 +00:00
70 lines
2.5 KiB
HTML
70 lines
2.5 KiB
HTML
{{define "all"}}
|
|
{{template "header" .}}
|
|
<script src="/js/index.js"></script>
|
|
{{template "aside" .}}
|
|
<script>aside.active_dashboard();</script>
|
|
<style>
|
|
#label-rule-type {
|
|
margin-right: 5px;
|
|
}
|
|
#rule-type {
|
|
width: 200px;
|
|
display: inline-block;
|
|
}
|
|
</style>
|
|
<div class="content-wrapper">
|
|
<div class="content-header">
|
|
<div class="container-fluid">
|
|
<div class="row mb-2">
|
|
<div class="col-sm-6">
|
|
<h1 class="m-0">总览</h1>
|
|
</div>
|
|
</div>
|
|
<!-- row -->
|
|
</div>
|
|
<!-- container -->
|
|
</div>
|
|
<!-- header -->
|
|
<section class="content">
|
|
<div class="container-fluid">
|
|
<div id="cards" class="row"></div>
|
|
<!-- 统计数据 -->
|
|
<div class="row"><div class="col-12">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h3 class="card-title">终端列表</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="form-group">
|
|
<label id="label-rule-type" for="rule-type">类型:</label>
|
|
<select id="rule-type" class="form-control">
|
|
<option value="all">全部</option>
|
|
<option value="shell">shell</option>
|
|
<option value="vnc">vnc</option>
|
|
</select>
|
|
</div>
|
|
<table id="rules" class="table table-hover">
|
|
<thead><tr>
|
|
<th>名称</th>
|
|
<th style="width:200px">对端</th>
|
|
<th style="width:120px">类型</th>
|
|
<th style="width:120px">虚拟连接数</th>
|
|
<th style="width:200px">接收/发送(字节数)</th>
|
|
<th style="width:200px">接收/发送(数据包)</th>
|
|
<th style="width:120px">操作</th>
|
|
</tr></thead>
|
|
<tbody></tbody>
|
|
</table>
|
|
</div>
|
|
<!-- body -->
|
|
</div>
|
|
<!-- card -->
|
|
</div></div>
|
|
<!-- 终端列表 -->
|
|
</div>
|
|
<!-- container -->
|
|
</section>
|
|
<!-- body -->
|
|
</div>
|
|
{{template "footer"}}
|
|
{{end}} |