{% set db = request.get_db() %} {% set test = db.getTest(id) %} {% extends "layout.html" %} {% set components = [("browse", db_url_for("browse"))] %} {% block title %}Test: {{test.name}}{% endblock %} {% block body %} {# Show the test info dictionary. #}

Test Info

{% for key,value in test.info|dictsort %} {% endfor %}
Key Value
{{key}} {{value}}
{# List samples. #}

Associated Samples

{% for s in db.samples(test=test) %} {% endfor %}
Run ID Value
{{s.run_id}} {{s.value}}
{% endblock %}