{% 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 %} {% if perms.tariff_app.change_tariff %} {{ human.active_tariff.title }} {% else %} {{ human.active_tariff.title }} {% endif %} {% else %}——— {% endif %} {{ human.ballance }} {% if perms.abonapp.delete_abon %} {% endif %}
Ещё нет абонентов. {% if perms.abonapp.add_abon %} Добавить {% endif %}
{% if perms.abonapp.add_abon %} Добавить абонента {% endif %} Обновить абонентов в NAS
{% include 'toolbar_page.html' with pag=peoples %} {% endblock %}