{% extends 'base.html.twig' %} {% block content %}
{% if records == 1 %}Retrieved 1 result.{% else %}Retrieved {{ records }} results.{% endif %}
{% if allow_filtering %}
Filtered results All results
{% endif %}

Statistics

{% for record in stats %} {% if record.scene1.correct %} {% if record.unnoted.correct %} {% if record.renoted.correct %} {% endfor %}
# Notable Unnoted Renoted
{{ loop.index }}.{% else %}{% endif %} {{ record.notable.time / 1000 }} seconds{% else %}{% endif %} {{ record.unnoted.time / 1000 }} seconds{% else %}{% endif %} {{ record.renoted.time / 1000 }} seconds
{{ dump(stats) }}
{{ dump(data) }}

Raw results

Download results

{% for record in data %} {% endfor %}
# Notable Unnoted Renoted
x y time x y time x y time
{{ loop.index }}. {{ record.notable.xcoordinate }} {{ record.notable.ycoordinate }} {{ record.notable.responsetime }} {{ record.unnoted.xcoordinate }} {{ record.unnoted.ycoordinate }} {{ record.unnoted.responsetime }} {{ record.renoted.xcoordinate }} {{ record.renoted.ycoordinate }} {{ record.renoted.responsetime }}
{% endblock %}