2006-12-16 15:15:31 +03:00
|
|
|
<div class="contextual">
|
|
|
|
<%= 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' %>
|
|
|
|
</div>
|
|
|
|
|
2006-12-17 11:10:18 +03:00
|
|
|
<h2><%=h @news.title %></h2>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-12-17 11:10:18 +03:00
|
|
|
<p><em><%=h @news.summary %><br />
|
2006-12-01 01:17:44 +03:00
|
|
|
<%= @news.author.display_name %>, <%= format_time(@news.created_on) %></em></p>
|
|
|
|
<br />
|
2006-11-12 21:50:30 +03:00
|
|
|
<%= textilizable auto_link @news.description %>
|
2006-12-16 15:15:31 +03:00
|
|
|
<br />
|
2006-12-10 21:35:48 +03:00
|
|
|
|
|
|
|
<div id="comments" style="margin-bottom:16px;">
|
|
|
|
<h3><%= l(:label_comment_plural) %></h3>
|
|
|
|
<% @news.comments.each do |comment| %>
|
2006-12-16 15:15:31 +03:00
|
|
|
<% next if comment.new_record? %>
|
|
|
|
<h4><%= format_time(comment.created_on) %> - <%= comment.author.name %></h4>
|
|
|
|
<div class="contextual">
|
|
|
|
<%= 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' %>
|
|
|
|
</div>
|
|
|
|
<%= simple_format(auto_link(h comment.comment))%>
|
2006-12-10 21:35:48 +03:00
|
|
|
<% end if @news.comments_count > 0 %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% if authorize_for 'news', 'add_comment' %>
|
|
|
|
<h3><%= l(:label_comment_add) %></h3>
|
|
|
|
<%= start_form_tag :action => 'add_comment', :id => @news %>
|
|
|
|
<%= error_messages_for 'comment' %>
|
|
|
|
<p><label for="comment_comment"><%= l(:field_comment) %></label><br />
|
|
|
|
<%= text_area 'comment', 'comment', :cols => 60, :rows => 6 %></p>
|
|
|
|
<%= submit_tag l(:button_add) %>
|
|
|
|
<%= end_form_tag %>
|
|
|
|
<% end %>
|