mirror of https://github.com/jumpserver/jumpserver
47 lines
2.1 KiB
HTML
47 lines
2.1 KiB
HTML
<div class="tab-content">
|
|
<table class="table table-striped table-bordered table-hover ">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center"> 用户名 </th>
|
|
<th class="text-center"> 登录主机 </th>
|
|
<th class="text-center"> 命令统计 </th>
|
|
<th class="text-center"> 登录时间 </th>
|
|
<th class="text-center"> 结束时间 </th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for post in contacts.object_list %}
|
|
<tr class="gradeX">
|
|
<td class="text-center" id="username"> {{ post.user }} </td>
|
|
<td class="text-center" id="ip"> {{ post.host }} </td>
|
|
<td class="text-center"><a href="/jlog/history/?id={{ post.id }}" class="log_command"> 命令统计 </td>
|
|
<td class="text-center" id="start_time"> {{ post.start_time|date:"Y-m-d H:i:s"}} </td>
|
|
<td class="text-center" id="end_time"> {{ post.end_time|date:"Y-m-d H:i:s" }} </td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<div class="row">
|
|
<div class="col-sm-6 col-sm-offset-6">
|
|
<div class="dataTables_paginate paging_simple_numbers" id="editable_paginate">
|
|
<ul class="pagination" style="margin-top: 0; float: right">
|
|
|
|
{% if contacts.has_previous %}
|
|
<li><a href="?page={{ contacts.previous_page_number }}">«</a></li>
|
|
{% endif %}
|
|
|
|
{% for page in p.page_range %}
|
|
{% ifequal offset1 page %}
|
|
<li class="active"><a href="?page={{ page }}" title="第{{ page }}页">{{ page }}</a></li>
|
|
{% else %}
|
|
<li><a href="?page={{ page }}" title="第{{ page }}页">{{ page }}</a></li>
|
|
{% endifequal %}
|
|
{% endfor %}
|
|
{% if contacts.has_next %}
|
|
<li><a href="?page={{ contacts.next_page_number }}">»</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div> |