{% if transient.other_designation %}
IAU Name:
{% endif %}
{% if externalXMs %}
See Also:
{% for row in externalXMs %}
{% ifchanged row.external_designation %}
{% if row.url %}
{% else %}
{{ row.external_designation }}
{% endif %}
{% endifchanged %}
{% endfor %}
{% endif %}
{% if lasairCrossmatches %}
{% for l in lasairCrossmatches %}
{{ l.description }} Crossmatches:
{% for row in l.crossmatches %}
Offset = {{ row.separation|floatformat:"2" }}"
{% endfor %}
{% endfor %}
{% endif %}
{% if panstarrsCrossmatches %}
{% for p in panstarrsCrossmatches %}
{{ p.description }} Crossmatches:
{% for row in p.crossmatches %}
Offset = {{ row.separation|floatformat:"2" }}"
{% endfor %}
{% endfor %}
{% endif %}
{% if tnsXMs %}
TNS Crossmatch:
{% for row in tnsXMs %}
{% ifchanged row.external_designation %}
{% if row.url %}
{% else %}
{{ row.external_designation }}
{% endif %}
{% endifchanged %}
{% if row.separation %}
Offset = {{ row.separation|floatformat:"2" }}"
{% endif %}
{% if row.object_z %}
Object z = {{ row.object_z|floatformat:"3" }}
{% endif %}
{% if row.host_z %}
Host z = {{ row.host_z|floatformat:"3" }}
{% endif %}
{% if row.discoverer %}
Discoverer = {{ row.discoverer }}
{% endif %}
{% if row.other_info and row.other_info != transient.atlas_designation %}
Name = {{ row.other_info }}
{% endif %}
{% if row.disc_date %}
Discovered on {{ row.disc_date }}
{% endif %}
{% endfor %}
{% endif %}
{% if extinction %}
Galactic Extinction
| Filter |
A |
{# dictsort is optional, just to keep rows in a predictable order #}
{% for key, value in extinction.items %}
{# remove the 'A_' prefix by slicing off the first 2 characters #}
| {{ key|slice:"2:" }} |
{# format the float to 3 decimal places #}
{{ value|floatformat:3 }} |
{% endfor %}
{% endif %}