{% extends "dashboard_app/_content_with_sidebar.html" %} {% load humanize %} {% load markup %} {% load i18n %} {% block extrahead %} {{ block.super }} {% endblock %} {% block sidebar %}

Administration

{% if belongs_to_user %} {% else %}

You cannot make any changes to this testing effort. Only the owner of the {{ effort.project }} can do this.

{% endif %}

Tags

The concept of testing efforts is based on using tags to associate test runs with a common goal or task. This testing effort will list any test runs that have any of the following tags present.

{% endblock %} {% block content %}

About {{ effort.name }}

{{ effort.description|markdown }}

Tests related to this effort

The following tests contain one of the tags associated with this effort

{% regroup test_run_list|dictsortreversed:"analyzer_assigned_date" by analyzer_assigned_date|date:"Y-m-d" as test_run_cluster_list %} {% for test_run_cluster in test_run_cluster_list %} {% for test_run in test_run_cluster.list %} {% with test_run.denormalization as denormalization %} {% endwith %} {% endfor %} {% endfor %}
Tests ran on {{ test_run_cluster.grouper }} Pass Fail Skip Unknown
{{ test_run.test }} {% spaceless %}
{% endspaceless %}
{{ denormalization.count_pass }} {{ denormalization.count_fail }} {{ denormalization.count_skip }} {{ denormalization.count_unknown }}
{% endblock %}