diff --git a/colab/super_archives/templates/superarchives/thread-dashboard.html b/colab/super_archives/templates/superarchives/thread-dashboard.html
index 8c6aef9..28a7868 100644
--- a/colab/super_archives/templates/superarchives/thread-dashboard.html
+++ b/colab/super_archives/templates/superarchives/thread-dashboard.html
@@ -6,7 +6,6 @@
{% block main-content %}
{% trans 'Groups'|title %}
-
{% for mailinglist in lists %}
{% if mailinglist.get_latest or mailinglist.get_most_relevant %}
{{ mailinglist.name|title|lower }} {% if mailinglist.description %} ({{ mailinglist.description }}){% endif %}
@@ -20,7 +19,7 @@
{% trans 'latest'|title %}
{% for thread in mailinglist.get_latest %}
- {% include "message-preview.html" with result=thread.latest_message %}
+ {% include "dashboard-message-preview.html" with result=thread.latest_message %}
{% endfor %}
@@ -34,7 +33,7 @@
{% trans 'most relevant'|title %}
{% for thread in mailinglist.get_most_relevant %}
- {% include "message-preview.html" with result=thread %}
+ {% include "dashboard-message-preview.html" with result=thread %}
{% endfor %}
--
libgit2 0.21.2