{% if current_entry.name != satellite_entry.name %}
| Name |
{{ current_entry.name }} |
{{ satellite_entry.name }} |
{% endif %}
{% if current_entry.norad_cat_id != satellite_entry.norad_cat_id %}
| NORAD ID |
{{ current_entry.norad_cat_id|default:'-'}} |
{{ satellite_entry.norad_cat_id|default:'-'}} |
{% endif %}
{% if current_entry.norad_follow_id != satellite_entry.norad_follow_id %}
| Followed NORAD ID |
{{ current_entry.norad_follow_id|default:'-'}} |
{{ satellite_entry.norad_follow_id|default:'-'}} |
{% endif %}
{% if current_entry.names != satellite_entry.names %}
| Alternative Names |
{{ current_entry.names|default:'-'}} |
{{ satellite_entry.names|default:'-'}} |
{% endif %}
{% if current_entry.description != satellite_entry.description %}
| Description |
{{ current_entry.description|default:'-'}} |
{{ satellite_entry.description|default:'-'}} |
{% endif %}
{% if current_entry.operator != satellite_entry.operator %}
| 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 %}
|
{% endif %}
{% if current_entry.status != satellite_entry.status %}
| Status |
{% if current_entry.status == 'in orbit' %}
{% elif current_entry.status == 're-entered' %}
{% elif current_entry.status == 'future' %}
{% elif satellite_entry.status == 'launch failed' %}
{% else %}
{% endif %}
|
{% if satellite_entry.status == 'in orbit' %}
{% elif satellite_entry.status == 're-entered' %}
{% elif satellite_entry.status == 'future' %}
{% elif satellite_entry.status == 'launch failed' %}
{% else %}
{% endif %}
|
{% endif %}
{% if current_entry.reception_status != satellite_entry.reception_status %}
| Reception Status |
{{ current_entry.reception_status|default:'-'}} |
{{ satellite_entry.reception_status|default:'-'}} |
{% endif %}
{% if current_entry.reception_evidence != satellite_entry.reception_evidence %}
| Reception Evidence |
{% if current_entry.reception_evidence.urls %}
{% for evidence_url in current_entry.reception_evidence.urls %}
[Link {{ forloop.counter }}]
{% endfor %}
{% else %}
-
{% endif %}
|
{% if satellite_entry.reception_evidence.urls %}
{% for evidence_url in satellite_entry.reception_evidence.urls %}
[Link {{ forloop.counter }}]
{% endfor %}
{% else %}
-
{% endif %}
|
{% 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 %}
| Countries of Origin |
{% for country in current_entry.countries.all %}
{% endfor %}
|
{% for country in satellite_entry.countries.all %}
{% endfor %}
|
{% endif %}
{% if current_entry.website != satellite_entry.website %}
| Website |
{% if current_entry.website %}
{{ current_entry.website }}
{% else %}
-
{% endif %}
|
{% if satellite_entry.website %}
{{ satellite_entry.website }}
{% else %}
-
{% endif %}
|
{% endif %}
{% if current_entry.dashboard_url != satellite_entry.dashboard_url %}
| Dashboard URL |
{% if current_entry.dashboard_url %}
{{ current_entry.dashboard_url }}
{% else %}
-
{% endif %}
|
{% if satellite_entry.dashboard_url %}
{{ satellite_entry.dashboard_url }}
{% else %}
-
{% endif %}
|
{% endif %}
{% if current_entry.launched != satellite_entry.launched %}
| Launch Date |
{{ current_entry.launched|default:'-'}} |
{{ satellite_entry.launched|default:'-'}} |
{% endif %}
{% if current_entry.launch_id != satellite_entry.launch_id %}
| Launch |
{{ current_entry.launch.name }}
|
{{ satellite_entry.launch.name }}
|
{% endif %}
{% if current_entry.deployed != satellite_entry.deployed %}
| Deploy Date |
{{ current_entry.deployed|default:'-'}} |
{{ satellite_entry.deployed|default:'-'}} |
{% endif %}
{% if current_entry.decayed != satellite_entry.decayed %}
| Re-entry Date |
{{ current_entry.decayed|default:'-' }}
|
{{ satellite_entry.decayed|default:'-' }}
|
{% endif %}
{% if current_entry.get_image != satellite_entry.get_image %}
| Image |
|
|
{% endif %}