{% extends 'mainapp/base.html' %} {% load static %} {% block title %}Список объектов{% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %} {% block content %}

Список точек

{% if user.customuser.role == 'admin' or user.customuser.role == 'moderator' %} Создать {% endif %}
{% include 'mainapp/components/_column_visibility_dropdown.html' %}
{% include 'mainapp/components/_pagination.html' with page_obj=page_obj show_info=True %}
Фильтры
Сбросить
{% include 'mainapp/components/_table_header.html' with label="Имя" field="name" sort=sort %} {% include 'mainapp/components/_table_header.html' with label="Спутник" field="satellite" sort=sort %} {% include 'mainapp/components/_table_header.html' with label="Транспондер" field="" sortable=False %} {% include 'mainapp/components/_table_header.html' with label="Част, МГц" field="frequency" sort=sort %} {% include 'mainapp/components/_table_header.html' with label="Полоса, МГц" field="freq_range" sort=sort %} {% include 'mainapp/components/_table_header.html' with label="Поляризация" field="polarization" sort=sort %} {% include 'mainapp/components/_table_header.html' with label="Сим. V" field="bod_velocity" sort=sort %} {% include 'mainapp/components/_table_header.html' with label="Модул" field="modulation" sort=sort %} {% include 'mainapp/components/_table_header.html' with label="ОСШ" field="snr" sort=sort %} {% include 'mainapp/components/_table_header.html' with label="Время ГЛ" field="geo_timestamp" sort=sort %} {% include 'mainapp/components/_table_header.html' with label="Местоположение" field="" sortable=False %} {% include 'mainapp/components/_table_header.html' with label="Геолокация" field="" sortable=False %} {% include 'mainapp/components/_table_header.html' with label="Обновлено" field="updated_at" sort=sort %} {% include 'mainapp/components/_table_header.html' with label="Кем(обн)" field="" sortable=False %} {% include 'mainapp/components/_table_header.html' with label="Создано" field="created_at" sort=sort %} {% include 'mainapp/components/_table_header.html' with label="Кем(созд)" field="" sortable=False %} {% include 'mainapp/components/_table_header.html' with label="Комментарий" field="" sortable=False %} {% include 'mainapp/components/_table_header.html' with label="Усреднённое" field="" sortable=False %} {% include 'mainapp/components/_table_header.html' with label="Стандарт" field="standard" sort=sort %} {% include 'mainapp/components/_table_header.html' with label="Тип точки" field="" sortable=False %} {% include 'mainapp/components/_table_header.html' with label="Sigma" field="" sortable=False %} {% include 'mainapp/components/_table_header.html' with label="Зеркала" field="" sortable=False %} {% include 'mainapp/components/_table_header.html' with label="Автоматическая?" field="is_automatic" sort=sort %} {% for item in processed_objects %} {% empty %} {% endfor %}
{{ item.name }} {% if item.satellite_id %} {{ item.satellite_name }} {% else %} {{ item.satellite_name }} {% endif %} {% if item.obj.transponder %} {{ item.obj.transponder.downlink }}:{{ item.obj.transponder.frequency_range }} {% else %} - {% endif %} {{ item.frequency }} {{ item.freq_range }} {{ item.polarization }} {{ item.bod_velocity }} {{ item.modulation }} {{ item.snr }} {{ item.geo_timestamp|date:"d.m.Y H:i" }} {{ item.geo_location}} {{ item.geo_coords }} {{ item.obj.updated_at|date:"d.m.Y H:i" }} {{ item.updated_by }} {{ item.obj.created_at|date:"d.m.Y H:i" }} {{ item.obj.created_by }} {{ item.comment }} {{ item.is_average }} {{ item.standard }} {% if item.obj.lyngsat_source %} ТВ {% else %} - {% endif %} {% if item.has_sigma %} {{ item.sigma_info }} {% else %} - {% endif %} {{ item.mirrors }} {{ item.is_automatic }}
{% if selected_satellite_id %} Нет данных для выбранных фильтров {% else %} Пожалуйста, выберите спутник для отображения данных {% endif %}
{% include 'mainapp/components/_selected_items_offcanvas.html' %} {% include 'mainapp/components/_sigma_parameter_modal.html' %} {% include 'mainapp/components/_satellite_modal.html' %} {% endblock %}