diff --git a/plinth/templates/operations.html b/plinth/templates/operations.html
new file mode 100644
index 000000000..12529c42c
--- /dev/null
+++ b/plinth/templates/operations.html
@@ -0,0 +1,10 @@
+{% comment %}
+# SPDX-License-Identifier: AGPL-3.0-or-later
+{% endcomment %}
+
+{% for operation in operations %}
+
+
+ {{ operation.translated_message }}
+
+{% endfor %}
diff --git a/plinth/templates/setup.html b/plinth/templates/setup.html
index 77501a018..78a76fade 100644
--- a/plinth/templates/setup.html
+++ b/plinth/templates/setup.html
@@ -69,14 +69,7 @@
{% else %}
-
- {% for operation in operations %}
-
-
- {{ operation.translated_message }}
-
- {% endfor %}
-
+ {% include "operations.html" %}
{% endif %}
{% endblock %}