diff --git a/atlas/templates/atlas/collection_index_view.html b/atlas/templates/atlas/collection_index_view.html
index 8ca41105..50685b32 100644
--- a/atlas/templates/atlas/collection_index_view.html
+++ b/atlas/templates/atlas/collection_index_view.html
@@ -1,6 +1,7 @@
{% extends 'atlas/base.html' %}
{% block content %}
+Create collection
{% for collection in collections %}
- {{collection.name}}
diff --git a/rapids/tables.py b/rapids/tables.py
index 4f2fe64f..a4759697 100755
--- a/rapids/tables.py
+++ b/rapids/tables.py
@@ -57,6 +57,15 @@ class RapidTable(tables.Table):
"created_date", "open_access", "author")
sequence = ("view", "images", "exams")
+ def __init__(self, data=None, *args, **kwargs):
+ super().__init__(
+ data.prefetch_related(
+ "abnormality", "region", "examination", "laterality"
+ ),
+ *args,
+ **kwargs,
+ )
+
class RapidUserAnswerTable(tables.Table):
select = tables.CheckBoxColumn(accessor=("pk"))
delete = tables.LinkColumn(