Harvest report
Source: {{ name }}
Data JSON source
Total Datasets: {{data_json.dataset|length}}
Validation errors: {{ data_json_validation_errors|length }}
{% if data_json_validation_errors|length > 0 %}
{% for ve in data_json_validation_errors %}
- {{ ve }}
{% endfor %}
{% endif %}
Final process
Processed: {{results|length}}
Actions
{% for action, values in actions.items() %}
- {{ action }}: {{ values.total }}. Succeed: {{ values.success }}, fails: {{ values.fails }}
{% endfor %}
Errors: {{ action_errors|length }}
{% if action_errors|length > 0 %}
{% for error in action_errors %}
- {{ error }}
{% endfor %}
{% endif %}
Warnings: {{ action_warnings|length }}
{% if action_warnings|length > 0 %}
{% for warning in action_warnings %}
- {{ warning }}
{% endfor %}
{% endif %}
Validation errors: {{ validation_errors|length }}
{% if validation_errors|length > 0 %}
{% for ve in validation_errors %}
{% for title, errors in ve.items() %}
- {{ title }}
{% for error in errors %}
- {{ error }}
{% endfor %}
{% endfor %}
{% endfor %}
{% endif %}