{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Dashboard" %}{% endblock %} {% block contents %}
{% with test_run.stats_executions_status as stats %}
{% blocktrans with amount=stats.CompletedPercentage|floatformat:0 %}{{ amount }}% complete{% endblocktrans %}
|
{{ test_run.summary }}
{% trans "Started at" %} {{ test_run.start_date }}
|
{% trans "TestPlan" %} | {% trans "Product" %} | {% trans "Type" %} | {% trans "Executions" %} |
---|---|---|---|
{{ test_plan.name }} | {{ test_plan.product }} | {{ test_plan.type }} | {{ test_plan.num_runs }} |