{% extends "base.html" %} {% load tags %} {% load static %} {% block title %}{% if station_form.instance.id %} - Edit Ground Station {{ station_form.instance.name }}{% else %} - Add Ground Station{% endif %}{% endblock %} {% block css %} {% endblock css %} {% block content %}

{% if station_form.instance.id %} Edit: {{ station_form.instance.id }} - {{ station_form.instance.name }} {% else %} Add Ground Station {% endif %}

{% csrf_token %}
General Info
Location
{% if registered %}
Configuration
{% endif %}
Antennas
Loading Antennas
{% for antenna_form in antenna_formset %}
{% with frequency_range_formset=frequency_range_formsets|lookup_with_key:antenna_form.prefix %} {% for frequency_range_form in frequency_range_formset %}
{% endfor %} {% endwith %}
{% endfor %}
Settings


No one will be able to schedule satellites that violate frequencies. For SSA purposes and recording violations, please consider to change this option to "Only Operators".
Only operators will be able to schedule satellites that violate frequencies. Only necessary observations will be scheduled for SSA purposes and recording violations.
Everyone with permission to schedule will be able to schedule satellites that violate frequencies. However scheduling will be limited to use the minimum of Network and DB resources.

Image
{% endblock %} {% block javascript %} {% endblock javascript %}