diff --git a/cl/opinion_page/templates/includes/authorities_list.html b/cl/opinion_page/templates/includes/authorities_list.html
index 279cd34df2..ed9fa3a942 100644
--- a/cl/opinion_page/templates/includes/authorities_list.html
+++ b/cl/opinion_page/templates/includes/authorities_list.html
@@ -3,7 +3,14 @@
{% for authority in authorities %}
-
- {{ authority.depth }} reference{{ authority.depth|pluralize }} to
+ {% if docket %}
+
+ {% endif %}
+ {{ authority.depth }} reference{{ authority.depth|pluralize }}
+ {% if docket %}
+
+ {% endif %}
+ to
{{ authority.cited_opinion.cluster.caption|safe|v_wrapper }}
diff --git a/cl/scrapers/management/commands/clone_from_cl.py b/cl/scrapers/management/commands/clone_from_cl.py
index 5401011184..97018a7b21 100644
--- a/cl/scrapers/management/commands/clone_from_cl.py
+++ b/cl/scrapers/management/commands/clone_from_cl.py
@@ -37,6 +37,11 @@
manage.py clone_from_cl --type people_db.Person --id 4173 --clone-person-positions
manage.py clone_from_cl --type search.Docket --id 5377675 --clone-person-positions
+Note: for cloned Opinion Clusters to appear in docket authorities pages, use the
+`find_citations_and_parantheticals_for_recap_documents` method in the Django shell.
+You can pass all RECAPDocument IDs, for example:
+`RECAPDocument.objects.values_list('pk', flat=True)`, or only a subset if needed.
+
This is still work in progress, some data is not cloned yet.
"""