{% 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 %}
{% if objects %}
Show Event Time As: |
{{ "event"|timeselect:"gps" }} |
Show Record Creation Time As: |
{{ "created"|timeselect:"utc" }} |
{% for item in objects %}
{% 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 }} Hz |
Event Time: |
{{ item.gpstime|multiTime:"event" }} |
Latency: |
{{ item.reportingLatency }} seconds |
Created: |
{{ item.created|multiTime:"created" }} |
{% endfor %}
{% endif %}
{% endblock %}