>
<%= gravatar_tag User.find(comment.user_id), :default => 'wavatar', :secure => true %> <% if current_user %>
<%= t(:comment_flag) %>
<% end %> <%= link_to User.find(comment.user_id).login, list_channels_path(User.find(comment.user_id).login) %> <%= time_ago_in_words(comment.created_at) %> <%= t(:ago) %>
<%= auto_link_urls(comment.body) %>
<% if current_user %> <% if comment.user == current_user %> <%= link_to t(:delete), comment_path(comment), :method => :delete, :data => { :confirm => t(:confirm_comment_delete) } %> <% else %> <%= t(:comment_reply) %> <% end %> <% else %> <%= link_to t(:comment_reply), channel_comments_path(@channel) %> <% end %>
<%= render :partial => 'comments/comment', :collection => comment.children %>