{% load i18n %} {% load static %} {% load comments %} {% load extra_filters %} {% load attachments_tags %}

Comments

{% if perms.django_comments.add_comment %}
{% get_comment_form for execution as comment_form %}
{{ comment_form.comment }} {{ comment_form.content_type }} {{ comment_form.object_pk }} {{ comment_form.timestamp }} {{ comment_form.security_hash }}
{% if perms.testruns.change_testexecution %} {% for status in execution_status %} {% endfor %} {% endif %}
{% endif %}

Comments History ({{ comments_count }}): {% ifequal comments_count 0 %} [ {% trans "Show All" %} ] {% else %} [ {% trans "Show All" %} ] {% endifequal %}

{% trans "Test Execution Information" %}

{% trans "Run Date" %}:{{ execution.close_date }}
{% trans "Build" %}:{{ execution.build }} {% trans "Text Version" %}:{{ execution.case_text_version }}
{% if execution_logs %}

Change Log[ Show All ]

{% else %}

Change Log

  • {% trans "No log recorded" %}.
{% endif %}

Text

{{ test_case_text|markdown2html }}

{% trans "Bugs and hyperlinks" %} [{% trans "Add" %}] [{% trans "Report bug" %}]

Attachments

    {% get_attachments_for test_case as attachments_list %} {% for attachment in attachments_list %}
  • {{ attachment.filename }}
  • {% empty %}
  • {% trans "No attachment found" %}
  • {% endfor %}
{% if perms.attachments.add_attachment %} {% url 'testruns-get' execution.run_id as testrun_url %} {% attachment_form execution.case next=testrun_url %} {% endif %}

{% trans "Component" %}

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

Tag:

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