]> git.rmz.io Git - dotfiles.git/blob - flexget/templates/move.template
Other changes at cadscan (with the ones I want to keep stripped)
[dotfiles.git] / flexget / templates / move.template
1 {% if task.accepted -%}
2 {%- for group in task.accepted|groupby('task') %}
3 FlexGet has just downloaded {{group.list|length}} new entries for task {{group.grouper}}:
4 {%- for entry in group.list %}
5 - {{entry.location|pathbase}}
6 => {% if entry.folder|d(false) %}{{entry.folder}}/{% endif %}{{entry.filename}}
7 {%- endfor %}
8 {% endfor %}
9 {% endif -%}
10 {% if task.failed -%}
11 The following entries have failed for task {{task.name}}:
12 {%- for entry in task.failed %}
13 - {{entry.title}} Reason: {{entry.reason|d('unknown')}}
14 {% endfor %}
15 {% endif %}