<% unless @news.summary.empty? %><%=h @news.summary %>
<% end %>
<%= @news.author.name %>, <%= format_time(@news.created_on) %>
<%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %>
<% form_tag({:action => 'add_comment', :id => @news}, :id => "add_comment_form", :style => "display:none;") do %> <%= text_area 'comment', 'comments', :cols => 60, :rows => 6 %><%= submit_tag l(:button_add) %>
<% end %> <% end %>
<%= l(:label_comment_plural) %>
<% @news.comments.each do |comment| %> <% next if comment.new_record? %><%= format_time(comment.created_on) %> - <%= comment.author.name %>