{% extends "base.html" %} {% load tags %} {% load static %} {% block title %} - {{ launch.name }}{% endblock %} {% block css %} {% endblock %} {% block top-menu-left %} {{ launch.name }} {% endblock %} {% block top-menu-right %}
{% endblock %} {% block top %} {{ launch.name }} {% endblock %} {% block content %}| Name | Downlink | Mode | Deployed |
|---|---|---|---|
| {{ sat.satellite_entry__name|upper }} | {% if sat.downlink_freq %} {{ sat.downlink_freq|frq }} {% else %} — {% endif %} | {% if sat.downlink_mode %} {{ sat.downlink_mode }} {% else %} — {% endif %} | {% if sat.satellite_entry__deployed %} {{ sat.satellite_entry__deployed|date:"Y-m-d" }} {% else %} Unknown {% endif %} |
| Name | Sat ID | NORAD | Reception Status |
|---|---|---|---|
| {{ sat.satellite_entry__name|upper }} | {{ sat.satellite_identifier__sat_id }} | {% if sat.satellite_entry__norad_cat_id %} {{ sat.satellite_entry__norad_cat_id }} {% else %} — {% endif %} | {% if sat.satellite_entry__reception_status == 'Verified' %} {{ sat.satellite_entry__reception_status }} {% elif sat.satellite_entry__reception_status == 'Partially Verified' %} {{ sat.satellite_entry__reception_status }} {% elif sat.satellite_entry__reception_status == 'Unverified' %} {{ sat.satellite_entry__reception_status }} {% else %} {{ sat.satellite_entry__reception_status }} {% endif %} |