show.rhtml
32 lines
| 1.5 KiB
| text/html+ruby
|
RhtmlLexer
|
r330 | <div class="contextual"> | |
<%= link_to_if_authorized l(:button_edit), {:controller => 'news', :action => 'edit', :id => @news}, :class => 'icon icon-edit' %> | |||
<%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy', :id => @news}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %> | |||
</div> | |||
<h2><%=h @news.title %></h2> | |||
<p><em><% unless @news.summary.empty? %><%=h @news.summary %><br /><% end %> | |||
<%= @news.author.display_name %>, <%= format_time(@news.created_on) %></em></p> | |||
<br /> | |||
|
r42 | <%= textilizable auto_link @news.description %> | |
|
r330 | <br /> | |
<div id="comments" style="margin-bottom:16px;"> | |||
<h3 class="icon22 icon22-comment"><%= l(:label_comment_plural) %></h3> | |||
<% @news.comments.each do |comment| %> | |||
<% 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), :method => :post, :class => 'icon icon-del' %> | |||
</div> | |||
<%= simple_format(auto_link(h comment.comment))%> | |||
<% end if @news.comments_count > 0 %> | |||
</div> | |||
<% if authorize_for 'news', 'add_comment' %> | |||
<% form_tag({:action => 'add_comment', :id => @news}) do %> | |||
<%= error_messages_for 'comment' %> | |||
<p><label for="comment_comment"><%= l(:label_comment_add) %></label><br /> | |||
<%= text_area 'comment', 'comment', :cols => 60, :rows => 6 %></p> | |||
<%= submit_tag l(:button_add) %> | |||
<% end %> | |||
|
r78 | <% end %> |