diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/admin_helper.rb | 5 | ||||
-rw-r--r-- | app/views/admin_request/_some_annotations.html.erb | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/app/helpers/admin_helper.rb b/app/helpers/admin_helper.rb index 059cebdfa..151e53758 100644 --- a/app/helpers/admin_helper.rb +++ b/app/helpers/admin_helper.rb @@ -33,5 +33,10 @@ module AdminHelper link_to(eye, user_path(user), :title => "view user's page on public website") + " " + link_to(h(user.name), admin_user_show_path(user), :title => "view full details") end + + def comment_visibility(comment) + comment.visible? ? 'Visible' : 'Hidden' + end + end diff --git a/app/views/admin_request/_some_annotations.html.erb b/app/views/admin_request/_some_annotations.html.erb index 9123b0c30..7adcdc5bb 100644 --- a/app/views/admin_request/_some_annotations.html.erb +++ b/app/views/admin_request/_some_annotations.html.erb @@ -15,7 +15,7 @@ <%= admin_value(comment.created_at) %> <% end %> - <%= comment.visible ? 'Visible' : 'Hidden' %> + <%= comment_visibility(comment) %> <blockquote class="incoming-message"> <%= truncate(comment.body, :length => 400) %> |