{% extends "base.html" %} {% block title %}Reports{% endblock %} {% block content %}

QA Reports

{% if state.test_runs %} {% for run_id, run in state.test_runs.items() %} {% endfor %}
AppStatusBugsScreensStepsStarted
{{ run.apk_name }} {{ run.status }} {{ run.bugs_found }} {{ run.screens_found }} {{ run.steps_completed }} {{ run.started_at[:19] }}
{% else %}

No reports yet. Run a QA test first.

{% endif %}
{% endblock %}