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.
53 lines
1.7 KiB
53 lines
1.7 KiB
{% extends 'base.html' %}
|
|
{% block main %}
|
|
|
|
<h3>Группы абонентов</h3>
|
|
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th width="50">#</th>
|
|
<th>Название группы</th>
|
|
<th>Адресс группы</th>
|
|
<th>Количество абонентов</th>
|
|
<th width="100">Do</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for gr in groups %}
|
|
<tr>
|
|
<td>{{ gr.id }}</td>
|
|
<td><a href="{% url 'pays_people_list_link' gr.id %}">{{ gr.title }}</a></td>
|
|
<td>{{ gr.address }}</td>
|
|
<td>{{ gr.usercount }}</td>
|
|
<td>
|
|
{% if gr.usercount > 0 %}
|
|
<a href="#" class="btn btn-sm btn-default disabled">
|
|
{% else %}
|
|
<a href="{% url 'people_delgroup_link' %}?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="5"><a href="#">Ещё нет групп</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="5">
|
|
<a href="{% url 'addgroup_link' %}" class="btn btn-success btn-sm">
|
|
<span class="glyphicon glyphicon-plus"></span> Создать группу
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
|
|
{% include 'toolbar_page.html' with pag=groups %}
|
|
|
|
{% endblock %}
|