diff --git a/gas/templates/gas/delete_confirmation.html b/gas/templates/gas/delete_confirmation.html
index 34c9804..3bbe78c 100644
--- a/gas/templates/gas/delete_confirmation.html
+++ b/gas/templates/gas/delete_confirmation.html
@@ -7,14 +7,16 @@
{% block content %}
{{ confirmation_text }}
- {% trans "Summary" %}
-
- {% for model_name, object_count in deleted_model_count.items %}
- - {{ model_name|capfirst }}: {{ object_count }}
- {% endfor %}
-
- {% trans "Objects" %}
- {{ deleted_objects|unordered_list }}
+ {% if show_deleted_objects %}
+ {% trans "Summary" %}
+
+ {% for model_name, object_count in deleted_model_count.items %}
+ - {{ model_name|capfirst }}: {{ object_count }}
+ {% endfor %}
+
+ {% trans "Objects" %}
+ {{ deleted_objects|unordered_list }}
+ {% endif %}