diff --git a/app/views/post_flags/index.html.erb b/app/views/post_flags/index.html.erb
index ecc2ffb94..c114f3b0c 100644
--- a/app/views/post_flags/index.html.erb
+++ b/app/views/post_flags/index.html.erb
@@ -14,7 +14,11 @@
<% @post_flags.each do |post_flag| %>
| <%= PostPresenter.preview(post_flag.post) %> |
- <%= link_to post_flag.creator.name, user_path(post_flag.creator) %> |
+
+ <% if CurrentUser.user.is_janitor? %>
+ <%= link_to post_flag.creator.name, user_path(post_flag.creator) %>
+ <% end %>
+ |
<%= format_text post_flag.reason %> |
<%= post_flag.is_resolved? %> |