<div id="comment_<%= comment.id %>" class="comment">
  <hr noshade />
  <% if logged_in? and comment.authorized?(User.find (session[:user_id])) %>
  <span class="edit_link" style="float :right">
    <%= link_to_remote "(usu)",
             :url => blog_post_comment_path(comment.post.blog, comment.post, comment),
             :method => :delete,
             :confirm => 'Czy jeste pewny?' %>
  </span>
  <% end %>
  .
  .
  .
</div>

