{% if new_issues|length > 0 %}
New issues
Source
|
Problem
|
{% for issue in new_issues %}
{{issue['properties']['source']}}
|
{{issue['properties']['description']}}
|
{% endfor %}
{% endif %}
{% if existing_issues|length > 0 %}
Existing issues
Source
|
Problem
|
{% for issue in existing_issues %}
{{issue['properties']['source']}}
|
{{issue['properties']['description']}}
|
{% endfor %}
{% endif %}
{% if fixed_issues|length > 0 %}
Fixed issues
Source
|
Problem
|
{% for issue in fixed_issues %}
{{issue['properties']['source']}}
|
{{issue['properties']['description']}}
|
{% endfor %}
{% endif %}