2015-01-09 14:10:38 +00:00
|
|
|
{% extends 'base.html' %}
|
2015-01-24 04:54:25 +00:00
|
|
|
{% load mytags %}
|
2015-01-09 14:10:38 +00:00
|
|
|
{% block content %}
|
2015-01-24 04:54:25 +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">
|
2015-03-03 14:44:00 +00:00
|
|
|
<h5> 查看小组</h5>
|
2015-01-24 04:54:25 +00:00
|
|
|
<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">
|
|
|
|
<div class="">
|
2015-03-04 10:20:03 +00:00
|
|
|
<a target="_blank" href="/juser/group_add/" class="btn btn-sm btn-primary "> 添加小组 </a>
|
|
|
|
<a id="del_btn" class="btn btn-sm btn-danger "> 删除所选 </a>
|
2015-03-03 10:42:06 +00:00
|
|
|
<form id="search_form" method="get" action="" class="pull-right mail-search">
|
|
|
|
<div class="input-group">
|
|
|
|
<input type="text" class="form-control input-sm" id="search_input" name="search" placeholder="Search">
|
|
|
|
<div class="input-group-btn">
|
|
|
|
<button id='search_btn' type="submit" class="btn btn-sm btn-primary">
|
|
|
|
Search
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2015-01-09 14:10:38 +00:00
|
|
|
</div>
|
2015-01-24 04:54:25 +00:00
|
|
|
|
|
|
|
<table class="table table-striped table-bordered table-hover " id="editable" >
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2015-03-03 10:42:06 +00:00
|
|
|
<th class="text-center">
|
|
|
|
<input type="checkbox" id="select_all" onclick="selectAll()" name="select_all">
|
|
|
|
</th>
|
2015-01-24 04:54:25 +00:00
|
|
|
<th class="text-center">组名</th>
|
2015-03-02 15:32:34 +00:00
|
|
|
<th class="text-center">所属部门</th>
|
2015-01-28 09:35:06 +00:00
|
|
|
<th class="text-center">成员数量</th>
|
2015-01-24 04:54:25 +00:00
|
|
|
<th class="text-center">备注</th>
|
|
|
|
<th class="text-center">操作</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for group in contacts.object_list %}
|
|
|
|
<tr class="gradeX">
|
2015-03-03 10:42:06 +00:00
|
|
|
<td class="text-center">
|
|
|
|
<input type="checkbox" name="selected" value="{{ group.id }}">
|
|
|
|
</td>
|
2015-01-24 04:54:25 +00:00
|
|
|
<td class="text-center"> {{ group.name }} </td>
|
2015-03-02 15:32:34 +00:00
|
|
|
<td class="text-center"> {{ group.dept.name }} </td>
|
2015-03-03 10:42:06 +00:00
|
|
|
<td class="text-center"> {{ group.id | member_count }} </td>
|
2015-01-24 04:55:20 +00:00
|
|
|
<td class="text-center"> {{ group.comment }} </td>
|
2015-01-24 04:54:25 +00:00
|
|
|
<td class="text-center">
|
2015-02-03 15:03:51 +00:00
|
|
|
<a title="[ {{ group.name }} ] 成员信息" href="../group_detail/?id={{ group.id }}" class="iframe btn btn-xs btn-primary">成员</a>
|
2015-01-24 04:54:25 +00:00
|
|
|
<a href="../group_edit/?id={{ group.id }}" class="btn btn-xs btn-info">编辑</a>
|
|
|
|
<a href="../group_del/?id={{ group.id }}" class="btn btn-xs btn-danger">删除</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-03-07 10:25:31 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="dataTables_info" id="editable_info" role="status" aria-live="polite">
|
|
|
|
Showing {{ contacts.start_index }} to {{ contacts.end_index }} of {{ p.count }} entries
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% include 'paginator.html' %}
|
|
|
|
</div>
|
2015-01-09 14:10:38 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-01-24 04:54:25 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
$(document).ready(function(){
|
|
|
|
$(".iframe").colorbox({iframe:true, width:"70%", height:"70%"});
|
2015-03-04 10:20:03 +00:00
|
|
|
var check_array = []
|
|
|
|
$('#del_btn').click(function(){
|
|
|
|
$(".gradeX input:checked").each(function() {check_array.push($(this).attr("value")) })
|
|
|
|
$(".gradeX input:checked").closest("tr").remove()
|
|
|
|
$.post("/juser/group_del_ajax/",
|
|
|
|
{group_ids: check_array.join(",")},
|
|
|
|
function(data){
|
|
|
|
alert(data)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
2015-01-24 04:54:25 +00:00
|
|
|
});
|
2015-03-03 10:42:06 +00:00
|
|
|
|
2015-03-04 10:20:03 +00:00
|
|
|
|
2015-01-24 04:54:25 +00:00
|
|
|
</script>
|
|
|
|
|
2015-01-09 14:10:38 +00:00
|
|
|
{% endblock %}
|