diff --git a/templates/dups.html b/templates/dups.html
index 83d731b..d5173a9 100644
--- a/templates/dups.html
+++ b/templates/dups.html
@@ -67,6 +67,7 @@
{% set page=namespace(cnt=0) %}
{% set pref=namespace(have="") %}
{% set count=namespace( del=0, keep=0 ) %}
+ {% set all_count=namespace( d_files=0, k_files=0, sets=0 ) %}
{# for each hash in ip_to_sp_dups_*, auto keep the _keep, auto delete the _del, only need hidden input #}
{% for h in DD.ip_to_sp_dups_keep %}
@@ -75,6 +76,9 @@
{% endfor %}
{% if count.keep %}
{% set auto.str = auto.str + "
Keeping {} files in storage path and deleting {} from import path
+ Automatically Keeping {{all_count.k_files}} files and deleting {{all_count.d_files}} files
+ Leaving {{DD.overall_dup_sets-all_count.sets}} manual choices to make (to delete a further {{DD.overall_dup_cnt-all_count.d_files}} files)
{% endif %}