diff --git a/scipost_django/pins/templates/pins/_hx_note_item.html b/scipost_django/pins/templates/pins/_hx_note_item.html
new file mode 100644
index 0000000000000000000000000000000000000000..fb3d7b84ff7654cf5778104455f82cb8cea200a9
--- /dev/null
+++ b/scipost_django/pins/templates/pins/_hx_note_item.html
@@ -0,0 +1 @@
+{{ note.title }}
diff --git a/scipost_django/pins/templates/pins/_hx_notes_list.html b/scipost_django/pins/templates/pins/_hx_notes_list.html
new file mode 100644
index 0000000000000000000000000000000000000000..81e183ba3fc7cf0d02e6105e01568533c2dbd572
--- /dev/null
+++ b/scipost_django/pins/templates/pins/_hx_notes_list.html
@@ -0,0 +1,25 @@
+{% load scipost_extras %}
+
+<div class="row" 
+     hx-get="{% url "pins:_hx_notes_list" object|content_type_id object.id %}" 
+     hx-trigger="notes-updated from:body target:form delay:2s, {% if notes is None %}load{% endif %}" 
+     hx-swap="outerHTML">
+  <div class="col-12">
+    <h3>Notes</h3>
+
+    <div>
+      <button class="btn btn-light btn-sm"
+              hx-get="{% url "pins:_hx_note_create_form" object|content_type_id object.id %}"
+              hx-target="closest div">Add note</button>
+    </div>
+
+    <ul>
+      
+      {% for note in notes %}
+        <li>{% include "pins/_hx_note_item.html" %}</li>
+      {% endfor %}
+
+    </ul>
+
+  </div>
+</div>
diff --git a/scipost_django/pins/urls.py b/scipost_django/pins/urls.py
index f822ff4295fa39c243ea75cfade807041b3f486d..3e61307f028659fb16a0f5d8cfcb221485b90859 100644
--- a/scipost_django/pins/urls.py
+++ b/scipost_django/pins/urls.py
@@ -3,14 +3,26 @@ __license__ = "AGPL v3"
 
 app_name = "pins"
 
-from django.urls import path
+from django.urls import include, path
 
 from . import views
 
 urlpatterns = [
     path(
-        "_hx_create/<int:regarding_content_type>/<int:regarding_object_id>",
-        views._hx_note_create_form,
-        name="hx_note_create_form",
+        "<int:regarding_content_type>/<int:regarding_object_id>",
+        include(
+            [
+                path(
+                    "_hx_create",
+                    views._hx_note_create_form,
+                    name="_hx_note_create_form",
+                ),
+                path(
+                    "_hx_list",
+                    views._hx_notes_list,
+                    name="_hx_notes_list",
+                ),
+            ]
+        ),
     ),
 ]
diff --git a/scipost_django/pins/views.py b/scipost_django/pins/views.py
index 877c7c77f7b762195e5da4e324301337541901f9..483d3540ff581fa254a55396584515ba5d698a80 100644
--- a/scipost_django/pins/views.py
+++ b/scipost_django/pins/views.py
@@ -6,6 +6,7 @@ from django.template.response import TemplateResponse
 
 from scipost.permissions import HTMXResponse
 
+from .models import Note
 from .forms import NoteForm
 
 
@@ -28,3 +29,21 @@ def _hx_note_create_form(request, regarding_content_type, regarding_object_id):
     context = {"form": form}
 
     return TemplateResponse(request, "pins/_hx_note_create_form.html", context)
+
+
+def _hx_notes_list(request, regarding_content_type, regarding_object_id):
+    regarding_content_type = ContentType.objects.get_for_id(regarding_content_type)
+    object = regarding_content_type.get_object_for_this_type(id=regarding_object_id)
+    notes = Note.objects.filter(
+        regarding_content_type=regarding_content_type,
+        regarding_object_id=regarding_object_id,
+    )
+
+    # TODO: Filter to the notes that the user has permission to see
+    # ...
+
+    context = {
+        "object": object,
+        "notes": notes,
+    }
+    return TemplateResponse(request, "pins/_hx_notes_list.html", context)