{% extends "base.html" %} {% load tags %} {% load static %} {% block title %} - Suggestion for Satellite {{ satellite_entry }}{% endblock %} {% block css %} {% if showmap %} {% endif %} {% endblock %} {% block top-menu-left %}
{% if is_new %} Suggestion for New Satellite {% else %} Suggested Edit for Satellite {% endif %}
{% endblock %} {% block top-menu-center %} {% endblock %} {% block top-menu-right %} {% if request.user.is_authenticated and not is_reviewed %} {% endif %} {% endblock %} {% block top %} {% if is_new %} Suggestion for New Satellite {% else %} Suggested Edit for Satellite {% endif %} {% endblock %} {% block content %}
Suggested by {{ satellite_entry.created_by|default:'-' }} on: {{ satellite_entry.created|date:'Y-m-d H:i' }} Citation: {{ satellite_entry.citation }} {% if is_reviewed %} Verdict: {% if satellite_entry.approved %}Approved{% else %}Rejected{% endif %} Reviewed by {{ satellite_entry.reviewd_by|default:'-' }} on: {{ satellite_entry.reviewed|date:'Y-m-d H:i' }} {% endif %}
{% if satellite_entry.launched and satellite_entry.launch %} {% endif %} {% if satellite_entry.status == 're-entered' %} {% endif %}
Name {% if not is_new %} {{ satellite_entry.name }} {% else %} {{ satellite_entry.name }} {% endif %}
NORAD ID {{ satellite_entry.norad_cat_id|default:'-'}}
Followed NORAD ID {{ satellite_entry.norad_follow_id|default:'-'}}
Alternative Names {{ satellite_entry.names|default:'-'}}
Description {{ satellite_entry.description|default:'-'}}
Owner/Operator {% if satellite_entry.operator.website and satellite_entry.operator.name %} {{ satellite_entry.operator.name}} {% else %} {{ satellite_entry.operator.name|default:'-'}} {% endif %}
Status {% if satellite_entry.status == 'alive' %} Operational {% elif satellite_entry.status == 're-entered' %} Decayed {% elif satellite_entry.status == 'dead' %} Malfunctioning {% elif satellite_entry.status == 'future' %} Future {% else %} Unknown {% endif %}
Countries of Origin {% for country in satellite_entry.countries %} {% endfor %}
Website {% if satellite_entry.website %} {{ satellite_entry.website }} {% else %} - {% endif %}
Dashboard URL {% if satellite_entry.dashboard_url %} {{ satellite_entry.dashboard_url }} {% else %} - {% endif %}
Launch Date {{ satellite_entry.launched|default:'-'}}
Launch {{ satellite_entry.launch.name }}
Deploy Date {{ satellite_entry.deployed|default:'-'}}
Re-entry Date {{ satellite_entry.decayed|default:'-'}}
Image {{ satellite_entry.name }}
{% if not is_new %}
{% if current_entry.name != satellite_entry.name %} {% endif %} {% if current_entry.norad_cat_id != satellite_entry.norad_cat_id %} {% endif %} {% if current_entry.norad_follow_id != satellite_entry.norad_follow_id %} {% endif %} {% if current_entry.names != satellite_entry.names %} {% endif %} {% if current_entry.description != satellite_entry.description %} {% endif %} {% if current_entry.operator != satellite_entry.operator %} {% endif %} {% if current_entry.status != satellite_entry.status %} {% endif %} {% if current_entry.countries.all|length != satellite_entry.countries.all|length or current_entry.countries.all|unordered_list != satellite_entry.countries.all|unordered_list %} {% endif %} {% if current_entry.website != satellite_entry.website %} {% endif %} {% if current_entry.dashboard_url != satellite_entry.dashboard_url %} {% endif %} {% if current_entry.launched != satellite_entry.launched %} {% endif %} {% if current_entry.launch_id != satellite_entry.launch_id %} {% endif %} {% if current_entry.deployed != satellite_entry.deployed %} {% endif %} {% if current_entry.decayed != satellite_entry.decayed %} {% endif %} {% if current_entry.get_image != satellite_entry.get_image %} {% endif %}
Field {% if is_reviewed %}Previous{% else %}Current Value{% endif %} Suggested
Name {{ current_entry.name }} {{ satellite_entry.name }}
NORAD ID {{ current_entry.norad_cat_id|default:'-'}} {{ satellite_entry.norad_cat_id|default:'-'}}
Followed NORAD ID {{ current_entry.norad_follow_id|default:'-'}} {{ satellite_entry.norad_follow_id|default:'-'}}
Alternative Names {{ current_entry.names|default:'-'}} {{ satellite_entry.names|default:'-'}}
Description {{ current_entry.description|default:'-'}} {{ satellite_entry.description|default:'-'}}
Owner/Operator {% if current_entry.operator.website and current_entry.operator.name %} {{ current_entry.operator.name}} {% else %} {{ current_entry.operator.name|default:'-'}} {% endif %} {% if satellite_entry.operator.website and satellite_entry.operator.name %} {{ satellite_entry.operator.name}} {% else %} {{ satellite_entry.operator.name|default:'-'}} {% endif %}
Status {% if current_entry.status == 'alive' %} Operational {% elif current_entry.status == 're-entered' %} Decayed {% elif current_entry.status == 'dead' %} Malfunctioning {% elif current_entry.status == 'future' %} Future {% else %} Unknown {% endif %} {% if satellite_entry.status == 'alive' %} Operational {% elif satellite_entry.status == 're-entered' %} Decayed {% elif satellite_entry.status == 'dead' %} Malfunctioning {% elif satellite_entry.status == 'future' %} Future {% else %} Unknown {% endif %}
Countries of Origin {% for country in current_entry.countries.all %} {% endfor %} {% for country in satellite_entry.countries.all %} {% endfor %}
Website {% if current_entry.website %} {{ current_entry.website }} {% else %} - {% endif %} {% if satellite_entry.website %} {{ satellite_entry.website }} {% else %} - {% endif %}
Dashboard URL {% if current_entry.dashboard_url %} {{ current_entry.dashboard_url }} {% else %} - {% endif %} {% if satellite_entry.dashboard_url %} {{ satellite_entry.dashboard_url }} {% else %} - {% endif %}
Launch Date {{ current_entry.launched|default:'-'}} {{ satellite_entry.launched|default:'-'}}
Launch {{ current_entry.launch.name }} {{ satellite_entry.launch.name }}
Deploy Date {{ current_entry.deployed|default:'-'}} {{ satellite_entry.deployed|default:'-'}}
Re-entry Date {{ current_entry.decayed|default:'-' }} {{ satellite_entry.decayed|default:'-' }}
Image {{ current_entry.name }} {{ satellite_entry.name }}
{% endif %}
{% if satellite_entry.created_by == request.user or perms.base.approve_satellitesuggestion %} {% endif %} {% if perms.base.approve_satellitesuggestion %} {% endif %} {% endblock %}