You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.6 KiB
55 lines
1.6 KiB
{% extends 'base.html' %}
|
|
{% block main %}
|
|
|
|
|
|
<ol class="breadcrumb">
|
|
<li><span class="glyphicon glyphicon-home"></span></li>
|
|
<li><a href="{% url 'accounts_list' %}">Администраторы</a></li>
|
|
<li class="active">Группы</li>
|
|
</ol>
|
|
|
|
|
|
|
|
<h3>Список групп администраторов</h3>
|
|
|
|
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th width="50">#</th>
|
|
<th>Группа</th>
|
|
<th class="col-sm-1">—</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for grp in groups %}
|
|
<tr>
|
|
<td>{{ grp.id }}</td>
|
|
<td><a href="{% url 'profile_group_link' grp.id %}">{{ grp.name }}</a></td>
|
|
<td class="btn-group">
|
|
<a href="#" class="btn btn-sm btn-info">
|
|
<span class="glyphicon glyphicon-edit"></span>
|
|
</a>
|
|
<a href="#" class="btn btn-sm btn-danger">
|
|
<span class="glyphicon glyphicon-remove"></span>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr><td colspan="3"><a href="#">Нет групп</a></td></tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="3">
|
|
<a href="#" class="btn btn-primary btn-sm" title="Добавить группу"><i class="icon-plus"></i></a>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
|
|
{% include 'toolbar_page.html' with pag=groups %}
|
|
|
|
{% endblock %}
|