{% extends 'base.html' %} {% block main %} {% include 'message_block.html' %}

Народ в выбранной группе

{% for human in peoples %} {% if human.is_active %} {% else %} {% endif %} {% empty %} {% endfor %}
Абонент {% if order_by == 'username' %}{% endif %} IP Адрес {% if order_by == 'ip_address' %}{% endif %} ФИО {% if order_by == 'fio' %}{% endif %} Улица {% if order_by == 'street' %}{% endif %} дом/кв {% if order_by == 'house' %}{% endif %} Телефон Тариф Балланс {% if order_by == 'ballance' %}{% endif %} Do
{{ human.username }} {{ human.ip_address|default:'Не назначен' }} {{ human.fio }} {{ human.street|default:'Не указан' }} {{ human.house|default:'Не указан' }} {{ human.telephone }} {% if human.active_tariff %} {{ human.active_tariff.title }} {% else %}——— {% endif %} {{ human.ballance }}
Ещё нет абонентов, добавить
{% if perms.abonapp.add_abon %} Добавить абонента {% endif %} Обновить абонентов в NAS
{% include 'toolbar_page.html' with pag=peoples %} {% endblock %}