{%- for group in task.accepted|groupby('task') %}
FlexGet has just downloaded {{group.list|length}} new entries for task {{group.grouper}}:
{%- for entry in group.list %}
-- {{entry.location|pathbase}}{% if entry.output|d(false) %}
- => {{entry.output|replace(entry.destination+'/','')}}{% endif %}
+- {{entry.location|pathbase}}
+ => {% if entry.folder|d(false) %}{{entry.folder}}/{% endif %}{{entry.filename}}
{%- endfor %}
{% endfor %}
{% endif -%}
+{% if task.failed -%}
+The following entries have failed for task {{task.name}}:
+{%- for entry in task.failed %}
+- {{entry.title}} Reason: {{entry.reason|d('unknown')}}
+{% endfor %}
+{% endif %}