{% extends "base.html" %} {% load static %} {% block title %} - Satellite List{% endblock %} {% block css %} {% endblock %} {% block top-menu-left %} Satellites {% endblock %} {% block top-menu-right %} {% if request.user.is_authenticated %} {% endif %} {% endblock %} {% block top %} Satellites {% endblock %} {% block content %}
{% if request.user.is_authenticated %} {% endif %} {% for sat in satellites %} {% if request.user.is_authenticated %} {% endif %} {% endfor %}
Satellite Identifier Name NORAD Status Alt. Names Transmitters Followed NORAD Operator Launched Website Dashboard Suggestions
{{ sat.satellite_identifier.sat_id }} {{ sat.satellite_entry.name|upper }} {{ sat.satellite_entry.norad_cat_id }} {% if sat.satellite_entry.status == 'alive' %} Operational {% elif sat.satellite_entry.status == 're-entered' %} Decayed {% elif sat.satellite_entry.status == 'dead' %} Malfunctioning {% elif sat.satellite_entry.status == 'future' %} Future {% else %} Unknown {% endif %} {{ sat.satellite_entry.names|upper }} {{ sat.approved_transmitters|length }} {{ sat.satellite_entry.norad_follow_id }} {{ sat.satellite_entry.operator }} {{ sat.satellite_entry.launched }} {{ sat.satellite_entry.website }} {{ sat.satellite_entry.dashboard_url }} {% for country in sat.satellite_entry.countries %} {% endfor %} {% if sat.satellite_suggestions_count %} {{ sat.satellite_suggestions_count }} {% endif %}
{% if request.user.is_authenticated %} {% if perms.base.merge_satellites %} {% endif %} {% endif %}
{% endblock %} {% block javascript %} {% endblock %}