diff --git a/virtualmeetings/templates/virtualmeetings/motion_content.html b/virtualmeetings/templates/virtualmeetings/motion_content.html
index dcc7acc48f9527db37fd68b4701059743bd5769c..b6556ad5cd3ae64c10477f9b2faf903951fecff7 100644
--- a/virtualmeetings/templates/virtualmeetings/motion_content.html
+++ b/virtualmeetings/templates/virtualmeetings/motion_content.html
@@ -3,7 +3,11 @@
     <h3 class="pt-0 mb-2">put forward on {{ motion.date|date:"Y-m-d" }} by {{ motion.put_forward_by.user.first_name }} {{ motion.put_forward_by.user.last_name }}</h3>
 
     <h3>Background:</h3>
+    {% if motion.put_forward_by.user.is_superuser %}
+    <div>{{ motion.background|safe|linebreaks }}</div>
+    {% else %}
     <div>{{ motion.background|linebreaks }}</div>
+    {% endif %}
 
     <h3>Motion:</h3>
     <div>{{ motion.motion|linebreaks }}</div>