diff --git a/scipost_django/colleges/templates/colleges/fellowship_detail.html b/scipost_django/colleges/templates/colleges/fellowship_detail.html
index 4a65265f0def29ee7ec54c000a5f5206459353a6..c90072fd88631fe0a0c6d6e7d6fcc690a3835386 100644
--- a/scipost_django/colleges/templates/colleges/fellowship_detail.html
+++ b/scipost_django/colleges/templates/colleges/fellowship_detail.html
@@ -162,6 +162,7 @@
       </table>
       <a href="{% url 'colleges:fellowship_create' contributor_id=fellowship.contributor.id %}">Add new Fellowship for {{ fellowship.contributor }}</a>
     </div>
+    {% include "pins/_hx_notes_list.html" with object=fellowship %}
   </div>
 
   {% if fellowship.guest %}
diff --git a/scipost_django/scipost/management/commands/add_groups_and_permissions.py b/scipost_django/scipost/management/commands/add_groups_and_permissions.py
index 08dedde8091492895bcc1df25c9570cd58bd4e05..0ddc54c1aff81009dc546df39e55eda036f30ba9 100644
--- a/scipost_django/scipost/management/commands/add_groups_and_permissions.py
+++ b/scipost_django/scipost/management/commands/add_groups_and_permissions.py
@@ -540,6 +540,11 @@ class Command(BaseCommand):
             name="Can view internal submissions notes",
             content_type=content_type,
         )
+        can_view_internal_fellowship_notes, created = Permission.objects.get_or_create(
+            codename="can_view_internal_fellowship_notes",
+            name="Can view internal fellowship notes",
+            content_type=content_type,
+        )
 
         # Affiliate Journals
         can_create_affiliate_journals, created = Permission.objects.get_or_create(
@@ -686,6 +691,7 @@ class Command(BaseCommand):
                 can_view_fellowships_monitor,
                 can_add_notes,
                 can_view_internal_submission_notes,
+                can_view_internal_fellowship_notes,
                 can_view_mailing_lists,
                 can_create_affiliate_journals,
             ]