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">
|
|
|
|
<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">
|
|
|
|
<div class="">
|
2015-01-24 05:20:52 +00:00
|
|
|
<a target="_blank" href="/juser/group_add/" class="btn btn-sm btn-primary "> 添加 </a>
|
2015-03-03 10:42:06 +00:00
|
|
|
|
|
|
|
<a target="_blank" href="/juser/group_add/" class="btn btn-sm btn-danger "> 删除所选 </a>
|
|
|
|
<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>
|
|
|
|
<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>
|
|
|
|
<div class="col-sm-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 class="paginate_button previous" aria-controls="editable" tabindex="0" id="editable_previous">
|
|
|
|
<a href="?page={{ contacts.previous_page_number }}">Previous</a>
|
|
|
|
</li>
|
|
|
|
{% else %}
|
|
|
|
<li class="paginate_button previous disabled" aria-controls="editable" tabindex="0" id="editable_previous">
|
|
|
|
<a href="#">Previous</a>
|
|
|
|
</li>
|
|
|
|
{% endif %}
|
2015-03-03 10:42:06 +00:00
|
|
|
{% for page in page_range %}
|
|
|
|
{% ifequal current_page page %}
|
2015-01-24 04:54:25 +00:00
|
|
|
<li class="paginate_button active" aria-controls="editable" tabindex="0"><a href="?page={{ page }}" title="第{{ page }}页">{{ page }}</a></li>
|
|
|
|
{% else %}
|
|
|
|
<li class="paginate_button" aria-controls="editable" tabindex="0"><a href="?page={{ page }}" title="第{{ page }}页">{{ page }}</a></li>
|
|
|
|
{% endifequal %}
|
|
|
|
{% endfor %}
|
|
|
|
{% if contacts.has_next %}
|
|
|
|
<li class="paginate_button next" aria-controls="editable" tabindex="0" id="editable_next">
|
|
|
|
<a href="?page={{ contacts.next_page_number }}">Next</a>
|
|
|
|
</li>
|
|
|
|
{% else %}
|
|
|
|
<li class="paginate_button next disabled" aria-controls="editable" tabindex="0" id="editable_next">
|
|
|
|
<a href="#">Next</a>
|
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
2015-01-10 04:30:21 +00:00
|
|
|
</div>
|
2015-01-24 04:54:25 +00:00
|
|
|
</div>
|
2015-01-09 14:21:19 +00:00
|
|
|
</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-03 10:42:06 +00:00
|
|
|
|
|
|
|
{# function user_group_search(){#}
|
|
|
|
{# $.ajax({#}
|
|
|
|
{# type: "GET",#}
|
|
|
|
{# url: "/juser/group_search/",#}
|
|
|
|
{# data: $("#search_form").serialize(),#}
|
|
|
|
{# success: function (data) {#}
|
|
|
|
{# $("#contents_form").html(data);#}
|
|
|
|
{# }#}
|
|
|
|
{# });#}
|
|
|
|
{# }#}
|
2015-01-24 04:54:25 +00:00
|
|
|
</script>
|
|
|
|
|
2015-01-09 14:10:38 +00:00
|
|
|
{% endblock %}
|