{% if panel.data and panel.data.total_sets > 0 %}

{{ panel.title }}

Found {{ panel.data.total_sets }} sets of duplicate files, consuming {{ panel.data.total_wasted_space }} of wasted space.
{% for item in panel.data.duplicate_sets %}
{{ item.count }} files of size {{ item.file_size }} each (Hash: {{ item.hash }}...)
    {% for path in item.paths %}
  • {{ path | e }}
  • {% endfor %}
{% endfor %}
{% endif %}