Create DT#1 {% if event['create'] and event['create']['status'] and not event['create']['status']['name'] == 'unknown' %} {{ event['create']['status']['name'] }} {% endif %} |
In progress DT#3 {% if event['in_progress'] and event['in_progress']['status'] and not event['in_progress']['status']['name'] == 'unknown' %} {{ event['in_progress']['status']['name'] }} {% endif %} |
Finish DT#4 {% if event['finish'] and event['finish']['status'] and not event['finish']['status']['name'] == 'unknown' %} {{ event['finish']['status']['name'] }} {% endif %} |
Result DT#5 {% if event['result'] and event['result']['status'] and not event['result']['status']['name'] == 'unknown' %} {{ event['result']['status']['name'] }} {% endif %} |
{% if event[call] and event[call]['incidents'] %}
{% for provider,incidents_list in event[call]['incidents_per_provider'].items() %}
{{ provider }}
|
{% endfor %}