<%= link_to_if_authorized l(:button_edit), {:controller => 'news', :action => 'edit', :id => @news}, :class => 'pic picEdit' %> <%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy', :id => @news}, :confirm => l(:text_are_you_sure), :post => true, :class => 'pic picDelete' %>

<%=h @news.title %>

<% unless @news.summary.empty? %><%=h @news.summary %>
<% end %> <%= @news.author.display_name %>, <%= format_time(@news.created_on) %>


<%= textilizable auto_link @news.description %>

<%= l(:label_comment_plural) %>

<% @news.comments.each do |comment| %> <% next if comment.new_record? %>

<%= format_time(comment.created_on) %> - <%= comment.author.name %>

<%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy_comment', :id => @news, :comment_id => comment}, :confirm => l(:text_are_you_sure), :post => true, :class => 'pic picDelete' %>
<%= simple_format(auto_link(h comment.comment))%> <% end if @news.comments_count > 0 %>
<% if authorize_for 'news', 'add_comment' %>

<%= l(:label_comment_add) %>

<%= start_form_tag :action => 'add_comment', :id => @news %> <%= error_messages_for 'comment' %>


<%= text_area 'comment', 'comment', :cols => 60, :rows => 6 %>

<%= submit_tag l(:button_add) %> <%= end_form_tag %> <% end %>