{% if notification.error %} 1
An error has occur in the adjutant service that needs attention.
{% else %}
There is a task that needs some attention.
{% endif %}

Related Task:
uuid: {{ task.uuid }}
keystone_user: {{ task.keystone_user|safe }}
project_id: {{ task.project_id }}
task_type: {{ task.task_type }}
cancelled: {{ task.cancelled }}
approved: {{ task.approved }}
completed: {{ task.completed }}
created_on: {{ task.created_on }}
approved_on: {{ task.approved_on }}
completed_on: {{ task.completed_on }}
action_notes:
{% for action, notes in task.action_notes.items %}- {{ action|safe }}
{% for note in notes %}    - {{ note|safe }}
{% endfor %}{% endfor %}

Notification details:
uuid: {{ notification.uuid }}
notes:
{{ notification.notes|safe }}
{% if task_url %}
Task link:
{{ task_url }}
{% endif %}
{% if notification.error and notification_url %}
Notification link:
{{ notification_url }}
{% endif %}
