1 <div class="issue-comments">
 
   2   <% comments.each do |comment| %>
 
   4       <div style="float:left">
 
   5         <%= link_to user_thumbnail(comment.user), :controller => :user,:action =>:view, :display_name => comment.user.display_name %>
 
   7       <b> <%= link_to comment.user.display_name, :controller => :user,:action =>:view, :display_name => comment.user.display_name %> </b> <br/>
 
  10       <% if comment.reassign %>
 
  12       <i><%= t('issues.show.comments.reassign') %></i>
 
  15     <span class="deemphasize">
 
  16       On <%= l comment.created_at.to_datetime, :format => :friendly %>
 
  23   <%= form_for :issue_comment, :url => { :action => 'comment', :id => @issue.id } do |f| %>
 
  24   <%= richtext_area :issue_comment, :body, :cols => 10, :rows => 8, :required => true %>
 
  25   <%= label_tag t('issues.show.comments.reassign_param') %> <%= check_box_tag :reassign, true %>
 
  28   <%= submit_tag 'Submit' %>