{% load comments %} {% load static %}
{# {% get_comment_list for test_case_run as case_run_comments %} #}

Comments

{% if perms.django_comments.add_comment %}
{% get_comment_form for test_case_run as comment_form %}
{{ comment_form.comment }} {{ comment_form.content_type }} {{ comment_form.object_pk }} {{ comment_form.timestamp }} {{ comment_form.security_hash }} {{ comment_form.name }} {{ comment_form.email }} {{ comment_form.url }}
{% if perms.testruns.change_testcaserun %} {% for status in test_case_run_status %} {% endfor %} {% endif %}
{% endif %}

Comments History ({{ comments_count }}): {% if comments_count == 0 %} [ Show All ] {% else %} [ Show All ] {% endif %}

Test Case Run Detail Information

Run Date:{{ test_case_run.close_date }}
Build:{{ test_case_run.build }} Text Version:{{ test_case_run.case_text_version }}
{% if test_case_run.notes %}
Notes
{{ test_case_run.notes|urlize|linebreaksbr }}
{% endif %}

Issues {% if has_issue_trackers %} [ File | {% if perms.issuetracker.add_issue %} Add {% endif %} ] {% endif %}

    {% for issue_key, issues in grouped_case_issues %}
  • {{ issue_key }} {% for issue in issues %} {% if issue.case_run_id %} From Run{{ issue.case_run.run_id }} {% if issue.case_run_id == test_case_run.pk %} {% endif %} {% else %} From Case {{ issue.case_id }} {% endif %} {% endfor %}
  • {% empty %}
  • No bug found
  • {% endfor %}
{% if caserun_logs %}

Change Log[ Show All ]

{% else %}

Change Log

  • No log recorded.
{% endif %}

Setup

{{ test_case_text.setup|safe }}

Breakdown

{{ test_case_text.breakdown|safe }}

Actions

{{ test_case_text.action|safe }}

Expected Results

{{ test_case_text.effect|safe }}

Attachment [ {% if perms.management.add_testattachment %} Add {% endif %} ]

Component

    {% for component in test_case.component.all %}
  • {{ component.name }}
  • {% empty %}
  • No component found
  • {% endfor %}

Tag:

    {% for tag in test_case.tag.all %}
  • {{ tag }}
  • {% empty %}
  • No tag found
  • {% endfor %}

Test Log [Add]

    {% for link in test_case_run.links.all %}
  • {{ link.name|escape }} {{ link.created_on|date:"N d, Y" }}
  • {% endfor %}