{% load extra_filters %} {% load i18n %} {% for test_plan in test_plans %}
{% trans "Author" %}
{{ test_plan.author.username }}
{% trans "Product" %}
{{ test_plan.product }}
{% trans "Version" %}
{{ test_plan.product_version }}
Plan Type" %}
{{ test_plan.type.name }}
{% trans "Parent" %}
{{ test_plan.parent.pk }}
{% trans "Reference Link" %}
{% if test_plan.extra_link %} {{ test_plan.extra_link }} {% else %} {% trans "None" %} {% endif %}
{% trans "Document" %}
{{ test_plan.text|markdown2html }}
{% if not forloop.last %}
{% endif %} {% empty %} {"msg":"{% trans "The plan you specified does not exist in the database." %}"} {% endfor %}