{% extends "base.html" %} {% load i18n %} {% load static %} {% load comments %} {% load extra_filters %} {% block title %}TC-{{ object.pk }}: {{ object.summary }}{% endblock %} {% block body_class %}cards-pf{% endblock %} {% block contents %}

TC-{{ object.pk }}: {{ object.summary }}

{% trans 'Author' %}: {{ object.author.username }}

{% trans 'Default tester' %}: {% if object.default_tester %} {{ object.default_tester.username }} {% else %} - {% endif %}

{% trans 'Product' %}: {{ object.category.product }}

{% trans 'Category' %}: {{ object.category }}

{% trans 'Status' %}: {{ object.case_status }}

{% trans 'Priority' %}: {{ object.priority }}

{{ object.create_date }}

{% trans 'Setup duration' %}: {{ object.setup_duration|default:"-" }}

{% trans 'Testing duration' %}: {{ object.testing_duration|default:"-" }}

{% trans 'Expected duration' %}: {{ object.expected_duration }}

{% trans 'Automated' %}: {{ object.is_automated }}

{% trans 'Script' %}: {{ object.script|default:'-' }}

{% trans 'Arguments' %}: {{ object.arguments|default:'-' }}

{% trans 'Requirements' %}: {{ object.requirement|default:'-' }}

{% trans 'Reference link' %}: {% if object.extra_link %} {{ object.extra_link }} {% else %} - {% endif %}

{{ object.text|markdown2html }}

{% trans 'Notes' %}: {{ object.notes }}

{% trans "Properties" %}

{% include 'include/tc_executions.html' with show_bugs=True %}
{% trans "Bugs" as bugs_heading %} {% include "include/bugs_table.html" with heading=bugs_heading class="bugs" %}

{% trans 'Test plans' %}

{% if perms.testcases.add_testcaseplan %} {% endif %}
{% trans 'ID' %} {% trans 'Name' %} {% trans 'Author' %} {% trans 'Type' %} {% trans 'Product' %}
{% include 'include/tags_card.html' with add_perm=perms.testcases.add_testcasetag %}

{% trans 'Components' %}

{% if perms.testcases.add_testcasecomponent %} {% endif %}
{% trans 'Name' %}
{% include 'include/attachments.html' %}
{% endblock %}