Index: src/views/pages/fedi-notifications.ejs
===================================================================
--- src/views/pages/fedi-notifications.ejs	(revision fe97cc38d423c6b67d75cc07bab36c9ef2dd4f91)
+++ src/views/pages/fedi-notifications.ejs	(revision 6b5d7da762e4f4cedbefb24fb218a1006897f071)
@@ -34,5 +34,13 @@
               <% if (n.type === 'mention' && n.note_url) { %><a class="nt-post" href="<%= n.note_url %>" target="_blank" rel="nofollow noopener"><%= t('tl.view_original') %></a><% } %>
             </div>
-            <% if (n.type === 'report' && n.content) { %><div class="nt-content"><%= n.content %></div>
+            <% if (n.type === 'report') { %>
+              <% if (n.content) { %><div class="nt-content"><%= n.content %></div><% } else { %><div class="nt-content nt-noreason"><%= t('notif.report_noreason') %></div><% } %>
+              <% if (n.objects && n.objects.length) { %>
+                <div class="nt-report-about">
+                  <% n.objects.forEach(function (o) { %>
+                    <a class="nt-post" href="/<%= o.slug %>"><%= t('notif.report_about') %>: <%= o.title %></a>
+                  <% }); %>
+                </div>
+              <% } %>
             <% } else if ((n.type === 'reply' || n.type === 'mention') && n.content) { %><div class="nt-content"><%- n.content %></div><% } %>
           </div>
@@ -58,4 +66,6 @@
     display: inline-flex; align-items: center; justify-content: center; }
   .nt-icon svg { width: 18px; height: 18px; }
+  .nt-report-about { margin-top: .35rem; display: flex; flex-direction: column; gap: .15rem; }
+  .nt-noreason { font-style: italic; opacity: .7; }
   .nt-like .nt-icon { background: color-mix(in srgb, #e8b04b 16%, transparent); color: #e8b04b; }
   .nt-boost .nt-icon { background: color-mix(in srgb, #2fa85a 16%, transparent); color: #2fa85a; }
