Bundle streams
|
{% for stream in summary_data.bundle_streams.all %}
{{stream.pathname}}{% if not forloop.last %}, {% endif %}
{% endfor %}
|
{% if summary_data.attributes %}
Attributes
|
{% for a in summary_data.attributes %}
{{ a.0 }} == {{ a.1 }}
{% endfor %}
|
{% endif %}
Test case
|
{% if summary_data.test_case %}
{{ summary_data.test }}:{{ summary_data.test_case }}
{% elif summary_data.test %}
{{ summary_data.test }}:<any>
{% else %}
<any>:<any>
{% endif %}
|