Tests
{% if obj.tests is defined %}
{% if obj.tests.manual is defined and obj.tests.manual is not none %}
Manual tests
{% for test in obj.tests.manual %}
{{ loop.index }}
{% include "_test_details.html" %}
{% endfor %}
{% endif %}
{% if obj.tests.automated is defined and obj.tests.automated is not none %}
Automated tests
{% for test in obj.tests.automated %}
{{ loop.index }}
{% include "_test_details.html" %}
{% endfor %}
{% endif %}
{% endif %}