{% extends "base.html" %} {% load timeutil %} {% load scientific %} {% block title %}Latest{% endblock %} {% block heading %}Latest{% endblock %} {% block pageid %}latest{% endblock %} {% block jscript %} {% if not error %} {% if rawquery %} {% else %} {% endif %} {% endif %} {% endblock %} {% block content %}
{{ form.as_table }}
{% if objects %}
{% for item in objects %}
{{ item.graceid }} | {{item.group}} {{item.get_analysisType_display}}
{% for log in item.eventlog_set.iterator %} {% if log.hasImage %}
{% endif %} {% endfor %}
{% for labelling in item.labelling_set.all %} {{ labelling.label.name }} {% endfor %}
FAR: {{ item.far|scientific }} {% if item.far %}Hz{% endif %}
Event Time: {{ item.gpstime }}
Latency: {{ item.reportingLatency }} {% if item.reportingLatency %}seconds{% endif %}
IFOS: {{ item.instruments }}
Created: {{ item.created|utc }}
{% endfor %} {% endif %} {% endblock %}