2015-01-24 05:20:52 +00:00
|
|
|
{% load mytags %}
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
{% include 'link_css.html' %}
|
|
|
|
|
|
|
|
<style type="text/css">
|
|
|
|
body
|
|
|
|
{
|
|
|
|
background: #FFFFFF;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="row">
|
|
|
|
<div class="contact-box">
|
2015-03-03 10:42:06 +00:00
|
|
|
<h2 class="text-center"><b>{{ group.name }}</b> 缁勪腑鎴愬憳</h2>
|
2015-01-24 05:20:52 +00:00
|
|
|
<div class="ibox-content">
|
|
|
|
|
|
|
|
<table class="table table-striped table-bordered table-hover " id="editable" >
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2015-01-28 07:08:16 +00:00
|
|
|
<th class="text-center">鐢ㄦ埛鍚</th>
|
|
|
|
<th class="text-center">濮撳悕</th>
|
|
|
|
<th class="text-center">瑙掕壊</th>
|
2015-01-24 05:20:52 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2015-01-28 07:08:16 +00:00
|
|
|
{% for user in users %}
|
2015-01-24 05:20:52 +00:00
|
|
|
<tr class="gradeX">
|
2015-01-28 07:08:16 +00:00
|
|
|
<td class="text-center">{{ user.username }}</td>
|
|
|
|
<td class="text-center">{{ user.name }}</td>
|
|
|
|
<td class="text-center">{{ user.id|get_role }}</td>
|
2015-01-24 05:20:52 +00:00
|
|
|
</tr>
|
2015-01-28 07:08:16 +00:00
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</tbody>
|
|
|
|
|
2015-01-24 05:20:52 +00:00
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|