{% 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_count }} {{ 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 %}