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.
71 lines
2.7 KiB
71 lines
2.7 KiB
{% extends 'base.html' %}
|
|
{% block main %}
|
|
|
|
|
|
<ol class="breadcrumb">
|
|
<li><span class="glyphicon glyphicon-home"></span></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>
|
|
<a href="{% url 'abonapp:group_list' %}?order_by=title&dir={{ dir|default:"down" }}">
|
|
Название группы
|
|
</a>
|
|
{% if order_by == 'title' %}<span class="glyphicon glyphicon-filter"></span>{% endif %}
|
|
</th>
|
|
<th width="100">
|
|
Количество абонентов
|
|
</th>
|
|
<th width="100">Do</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for gr in groups %}
|
|
<tr>
|
|
<td>{{ gr.id }}</td>
|
|
<td><a href="{% url 'abonapp:people_list' gr.id %}">{{ gr.title }}</a></td>
|
|
<td>{{ gr.usercount }}</td>
|
|
<td>
|
|
{% if gr.usercount > 0 %}
|
|
<a href="#" class="btn btn-sm btn-default disabled">
|
|
{% else %}
|
|
<a href="{% url 'abonapp:del_group' %}?t=a&id={{ gr.id }}" class="btn btn-sm btn-danger">
|
|
{% endif %}
|
|
<span class="glyphicon glyphicon-remove-circle"></span></a>
|
|
</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="4"><a href="#">Ещё нет групп</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="4" class="btn-group">
|
|
<a href="{% url 'abonapp:add_group' %}" class="btn btn-success btn-sm">
|
|
<span class="glyphicon glyphicon-plus"></span> Создать группу
|
|
</a>
|
|
<a href="{% url 'abonapp:log' %}" class="btn btn-default btn-sm">
|
|
<span class="glyphicon glyphicon-record"></span> Действия абонентов
|
|
</a>
|
|
<a href="{% url 'abonapp:debtors' %}" class="btn btn-default btn-sm">
|
|
<span class="glyphicon glyphicon-exclamation-sign"></span> Список должников
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
|
|
{% include 'toolbar_page.html' with pag=groups %}
|
|
|
|
{% endblock %}
|