{% extends 'tom_common/base.html' %} {% block title %}Event {{ nonlocalizedevent.event_id }}{% endblock %} {% block content %}

{{ nonlocalizedevent.event_id }} {{ nonlocalizedevent.get_state_display }}

{# Core attributes of the NonLocalizedEvent itself. #}
Event Details
Event Type
{{ nonlocalizedevent.get_event_type_display }}
Created
{{ nonlocalizedevent.created|date:"Y-m-d H:i:s" }} UTC
Last Modified
{{ nonlocalizedevent.modified|date:"Y-m-d H:i:s" }} UTC
{# Links to external services; GraceDB/Treasure Map only apply to GW events. #}
External Links
{% comment %} One row per EventSequence (alert update), in sequence order; the alert payload lives in the details JSON and the sky-localization numbers come from the sequence's EventLocalization. ({# #} comments are single-line only -- a multi-line one renders literally.) {% endcomment %}
Sequences
{% if sequences %} {% for sequence in sequences %} {% endfor %}
# Type Time FAR (Hz) Significant Instruments Area 50% (deg²) Area 90% (deg²) Distance (Mpc) Skymap Hermes
{{ sequence.sequence_id }} {{ sequence.event_subtype }} {{ sequence.details.time|default:"" }} {{ sequence.details.far|stringformat:".2e"|default:"" }} {{ sequence.details.significant|yesno:"yes,no," }} {{ sequence.details.instruments|join:", " }} {{ sequence.localization.area_50|floatformat:1|default:"" }} {{ sequence.localization.area_90|floatformat:1|default:"" }} {% if sequence.localization %} {{ sequence.localization.distance_mean|floatformat:0 }} ± {{ sequence.localization.distance_std|floatformat:0 }} {% endif %} {% if sequence.localization.skymap_url %} FITS {% endif %} {% if sequence.hermes_url %} message {% endif %}
{% else %}

No sequences have been ingested for this event.

{% endif %}
{% endblock %}