jumpserver/templates/juser/user_list.html

99 lines
4.7 KiB
HTML
Raw Normal View History

2015-01-14 15:30:20 +00:00
{% extends 'base.html' %}
2015-01-14 15:51:30 +00:00
{% load mytags %}
2015-01-14 15:30:20 +00:00
{% block content %}
2015-01-22 14:12:41 +00:00
{% 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 user 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>
2015-01-14 15:30:20 +00:00
</div>
2015-01-22 14:12:41 +00:00
</div>
<div class="ibox-content">
<div class="">
<a target="_blank" href="/juser/user_add/" class="btn btn-sm btn-primary "> 添加 </a>
2015-01-21 14:38:55 +00:00
</div>
2015-01-22 14:12:41 +00:00
<table class="table table-striped table-bordered table-hover " id="editable" >
<thead>
<tr>
2015-01-22 14:16:32 +00:00
<th class="text-center"><input type="checkbox" class="i-checks" name=""></th>
2015-01-22 14:12:41 +00:00
<th class="text-center">ID</th>
<th class="text-center">用户名</th>
<th class="text-center">姓名</th>
<th class="text-center">属组</th>
<th class="text-center">角色</th>
<th class="text-center">Email</th>
<th class="text-center">激活</th>
2015-01-22 14:26:13 +00:00
<th class="text-center">操作</th>
2015-01-22 14:12:41 +00:00
</tr>
</thead>
<tbody>
{% for user in users %}
<tr class="gradeX">
<td class="text-center"><input type="checkbox" class="i-checks" name=""></td>
<td class="text-center"> {{ user.id }} </td>
<td class="text-center"> {{ user.username }} </td>
<td class="text-center"> {{ user.name }} </td>
<td class="text-center"> {{ user.username|groups_str }}</td>
<td class="text-center">{{ user.id|get_role }}</td>
<td class="text-center">{{ user.email }}</td>
2015-01-22 14:26:13 +00:00
<td class="text-center">{{ user.is_active|bool2str }}</td>
2015-01-22 14:12:41 +00:00
<td class="text-center">
<a href="/juser/{{ user.username }}/" class="iframe btn btn-xs btn-primary">详情</a>
<a href="/juser/user_edit/{{ user.username }}" class="btn btn-xs btn-info">编辑</a>
<a href="/juser/user_del/{{ user.username }}" class="btn btn-xs btn-danger">删除</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<ul class="pagination">
{% if contacts.has_previous %}
<li><a href="?page={{ contacts.previous_page_number }}">&laquo;</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 }}">&raquo;</a></li>
{% endif %}
</ul>
2015-01-21 14:38:55 +00:00
</div>
2015-01-14 15:30:20 +00:00
</div>
</div>
</div>
2015-01-22 14:12:41 +00:00
</div>
<script>
$(document).ready(function(){
$(".iframe").colorbox({iframe:true, width:"70%", height:"70%"});
});
</script>
2015-01-14 15:30:20 +00:00
{% endblock %}