diff --git a/colab/super_archives/templates/superarchives/thread-dashboard.html b/colab/super_archives/templates/superarchives/thread-dashboard.html
index 9de7810..8c6aef9 100644
--- a/colab/super_archives/templates/superarchives/thread-dashboard.html
+++ b/colab/super_archives/templates/superarchives/thread-dashboard.html
@@ -49,4 +49,52 @@
{% endif %}
{% endfor %}
+ {% if page_obj.has_other_pages %}
+
+
+
+ {% endif %}
+
{% endblock %}
diff --git a/colab/super_archives/views.py b/colab/super_archives/views.py
index a21964d..245d72b 100644
--- a/colab/super_archives/views.py
+++ b/colab/super_archives/views.py
@@ -142,6 +142,7 @@ class ThreadDashboardView(ListView):
http_method_names = ['get']
context_object_name = 'lists'
template_name = 'superarchives/thread-dashboard.html'
+ paginate_by = 10
def get_queryset(self):
listnames_for_user = []
--
libgit2 0.21.2