diff --git a/app/views/stories/_listdetail.html.erb b/app/views/stories/_listdetail.html.erb index 19a4e82..d80e647 100644 --- a/app/views/stories/_listdetail.html.erb +++ b/app/views/stories/_listdetail.html.erb @@ -157,7 +157,9 @@ class="story <%= story.vote && story.vote[:vote] == 1 ? "upvoted" : "" %> <% end %> - <% if defined?(single_story) && single_story && story.downvotes >= 3 %> + <% if defined?(single_story) && single_story && + ((story.downvotes > 0 && @user && @user.is_moderator?) || + (story.downvotes >= 3)) %> | <%= story.vote_summary_for(@user).downcase %> <% end %> <% end %>