{% extends "base.html" %} {% load tags %} {% load static %} {% load humanize %} {% block title %} - Observations{% endblock %} {% block css %} {% endblock css %} {% block content %}

Observations

{% if can_schedule %} Schedule Observations {% endif %}
{% if can_schedule %} {% endif %}
{% if display_no_filter_warning %}

Below is the past 48h and future activity of Network stations, change the filters above to adjust the search results

{% endif %}
{% if user.is_authenticated and observations %} {% else %}
{% endif %} {% if is_paginated %} {% load paginator %}{% paginator request 3 %} {% endif %}
{% for observation in observations %} {% empty %}

No observations to display

{% endfor %}
ID Satellite Frequency Mode Timeframe Results Observer Station
{% if observation.is_future %} {{ observation.id }} {% elif observation.status < -100 %} {{ observation.id }} {% elif observation.status >= -100 and observation.status < 0 %} {{ observation.id }} {% elif observation.status >= 0 and observation.status < 100 %} {{ observation.id }} {% elif observation.status >= 100 %} {{ observation.id }} {% endif %} {{ observation.satellite.name }} {% if observation.center_frequency %} {{ observation.center_frequency|frq }} {% else %} {{ observation.transmitter_downlink_low|frq }} {% endif %} {{ observation.transmitter_mode|default:"-" }} {{ observation.transmitter_baud|floatformat|default:"" }} {{ observation.start|date:"Y-m-d" }} {{ observation.start|date:"H:i:s" }}
{{ observation.end|date:"Y-m-d" }} {{ observation.end|date:"H:i:s" }}
{% if observation.has_waterfall %} {% endif %} {% if observation.has_audio %} {% endif %} {% if observation.demoddata.exists %} {% with total_data=observation.demoddata.count %} {{ total_data }} {% endwith %} {% endif %} {% if observation.author %} {{ observation.author.displayname }} {% else %} - {% endif %} {% if observation.ground_station %} {{ observation.ground_station }} {% endif %}
{% if user.is_authenticated and observations %} {% else %}
{% endif %} {% if is_paginated %} {% load paginator %}{% paginator request 3 %} {% endif %}
{% include 'includes/satellite.html' %} {% include 'includes/legend.html' %} {% endblock content %} {% block javascript %} {% endblock javascript %}