aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/refinery/blog/admin/comments/_comment.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/refinery/blog/admin/comments/_comment.html.erb')
-rw-r--r--app/views/refinery/blog/admin/comments/_comment.html.erb20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/views/refinery/blog/admin/comments/_comment.html.erb b/app/views/refinery/blog/admin/comments/_comment.html.erb
new file mode 100644
index 0000000..51f2996
--- /dev/null
+++ b/app/views/refinery/blog/admin/comments/_comment.html.erb
@@ -0,0 +1,20 @@
+<li class='clearfix record <%= cycle("on", "on-hover") %>' id="<%= "comment-#{comment.to_param}" -%>">
+ <span class='title'>
+ <%= comment.name %>
+ <span class="preview"> - <%= truncate(comment.message, :length => 75) %></span>
+ </span>
+ <span class='actions'>
+ <%= link_to refinery_icon_tag("application_go.png"),
+ main_app.blog_post_path(comment.post, :anchor => "comment-#{comment.to_param}"),
+ :title => t('.view_live_html'),
+ :target => "_blank" unless comment.unmoderated? %>
+ <%= link_to refinery_icon_tag('zoom.png'), main_app.refinery_blog_admin_comment_path(comment),
+ :title => t('.read') %>
+ <%= link_to refinery_icon_tag("cross.png"),
+ main_app.rejected_refinery_blog_admin_comment_path(comment, :return_to => request.path.split('/').last.gsub(/^comments$/, 'index')),
+ :title => t('.reject') unless comment.rejected? %>
+ <%= link_to refinery_icon_tag("tick.png"),
+ main_app.approved_refinery_blog_admin_comment_path(comment, :return_to => request.path.split('/').last.gsub(/^comments$/, 'index')),
+ :title => t('.approve') unless comment.approved? %>
+ </span>
+</li>