<%= image_tag avatar_path(comment.user, :icon_small), class: 'avatar' %>

<%= comment.user.full_name %>

<%= l(comment.created_at, format: :full) %>

<% if comment.user == current_user %> <% end %>
<%= custom_auto_link(comment.message, team: current_team) %>
<%= bootstrap_form_for( :comment, url: step_step_comment_path(comment.step, comment, format: :json), html: { method: :put }, remote: true) do |f| %> <%= f.smart_text_area :message, single_line: true, hide_label: true, value: comment.message, data: { 'atwho-edit': '', message: comment.message }, class: 'comment-textarea', id: 'comment-textarea-' + comment.id.to_s %> <% end %>