{% endif %}
{% if suites %}
Suites to be created
{% endif %}
{% for suite_name, suite_info in suites.content.items %}
{% if not suite_info.suite_id and not skip_creating %}
{{ suite_name }}
{% for case in suite_info.cases %}
{{ case.test_name }}
{#Здесь можно было бы добавить параметры но без их обработки выглядит очень страшно#}
{% endfor %}
{% endif %}
{% endfor %}
{% if suites %}
Cases to be created within existing suites
{% endif %}
{% for suite_name, suite_info in suites.content.items %}
{% if suite_info.suite_id %}
{% for case in suite_info.cases %}
{% if not case.case_id and not case.test_status == 'unknown' and not skip_creating %}