{% 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 }}): {% if comments_count > 0 %} [ Hide All ] {% endif %}

{% if comments_count > 0 %}
    {% for comment in execution_comments %}
  • #{{ forloop.counter }} {{ comment.user.username }} {{ comment.submit_date }}
    {{ comment.comment|urlize|linebreaksbr }}
    {% if perms.comments.can_moderate and comment.user.pk == request.user.pk %}
    {% endif %}
  • {% endfor %}
{% endif %}

{% 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 %}