diff --git a/src/info/templates/info.html b/src/info/templates/info.html
index 4441db43..baab8900 100644
--- a/src/info/templates/info.html
+++ b/src/info/templates/info.html
@@ -57,7 +57,7 @@ Info | {{ block.super }}
-
{{ item.body|commonmark }}
+
{{ item.body|untrustedcommonmark }}
{% endfor %}
diff --git a/src/news/templates/news_detail.html b/src/news/templates/news_detail.html
index 8cc0c953..3f800508 100644
--- a/src/news/templates/news_detail.html
+++ b/src/news/templates/news_detail.html
@@ -14,5 +14,5 @@
{% endif %}
- {{ event.abstract|commonmark }}
+ {{ event.abstract|untrustedcommonmark }}
diff --git a/src/program/templates/speaker_detail.html b/src/program/templates/speaker_detail.html
index 5c9798a6..18447a81 100644
--- a/src/program/templates/speaker_detail.html
+++ b/src/program/templates/speaker_detail.html
@@ -7,7 +7,7 @@
-{{ speaker.biography|commonmark }}
+{{ speaker.biography|untrustedcommonmark }}
@@ -21,7 +21,7 @@
{{ event.title }}
- {{ event.abstract|commonmark }}
+ {{ event.abstract|untrustedcommonmark }}
Instances
diff --git a/src/shop/templates/product_detail.html b/src/shop/templates/product_detail.html
index e73081c4..a92f7516 100644
--- a/src/shop/templates/product_detail.html
+++ b/src/shop/templates/product_detail.html
@@ -13,7 +13,7 @@
{{ product.name }}
- {{ product.description|commonmark }}
+ {{ product.description|untrustedcommonmark }}
diff --git a/src/teams/templates/task_detail.html b/src/teams/templates/task_detail.html
index 5ac2b2b7..69525bbe 100644
--- a/src/teams/templates/task_detail.html
+++ b/src/teams/templates/task_detail.html
@@ -8,7 +8,7 @@
{% block content %}
Task: {{ task.name }}
-
{{ task.description|commonmark }}
+
{{ task.description|untrustedcommonmark }}
diff --git a/src/utils/management/commands/bootstrap-devsite.py b/src/utils/management/commands/bootstrap-devsite.py
index 2c4bbbd6..59c43321 100644
--- a/src/utils/management/commands/bootstrap-devsite.py
+++ b/src/utils/management/commands/bootstrap-devsite.py
@@ -326,6 +326,17 @@ class Command(BaseCommand):
host_title='Speaker',
)
+ debate = EventType.objects.create(
+ name='Debate',
+ slug='debate',
+ color='#F734C3',
+ light_text=True,
+ description='A panel debate with invited guests',
+ icon='users',
+ host_title='Guest',
+ public=True,
+ )
+
facility = EventType.objects.create(
name='Facilities',
slug='facilities',