Details
New or updated designs & models
{% for archive in report.archives %}
{% for archive_name, details in archive.items() %}
{% if details.marks > 0 %}
{{ archive_name }}
- {{ "{:,.0f}".format(details.marks) }} Design documents found
- {{ "{:,.0f}".format(details.images) }} Design images found
{% endif %}
{% endfor %}
{% endfor %}
{% if deletions is not none %}
To be deleted designs & models
{% for deletion in deletions|sort(attribute='fname') %}
- {{ deletion.fname }}
{% endfor %}
{% endif %}