2007-03-12 17:59:02 +00:00
|
|
|
<div class="contextual">
|
2007-09-22 17:52:43 +00:00
|
|
|
<%= link_to_if_authorized l(:button_edit),
|
|
|
|
{:controller => 'news', :action => 'edit', :id => @news},
|
|
|
|
:class => 'icon icon-edit',
|
2007-10-05 18:05:41 +00:00
|
|
|
:accesskey => accesskey(:edit),
|
2007-09-22 17:52:43 +00:00
|
|
|
:onclick => 'Element.show("edit-news"); return false;' %>
|
2007-03-12 17:59:02 +00:00
|
|
|
<%= 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>
|
|
|
|
|
2007-09-22 17:52:43 +00:00
|
|
|
<div id="edit-news" style="display:none;">
|
2008-02-03 14:38:04 +00:00
|
|
|
<% labelled_tabular_form_for :news, @news, :url => { :action => "edit", :id => @news },
|
|
|
|
:html => { :id => 'news-form' } do |f| %>
|
2007-09-22 17:52:43 +00:00
|
|
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
|
|
|
<%= submit_tag l(:button_save) %>
|
2008-02-03 14:38:04 +00:00
|
|
|
<%= link_to_remote l(:label_preview),
|
|
|
|
{ :url => { :controller => 'news', :action => 'preview' },
|
|
|
|
:method => 'post',
|
|
|
|
:update => 'preview',
|
|
|
|
:with => "Form.serialize('news-form')"
|
|
|
|
}, :accesskey => accesskey(:preview) %> |
|
2007-09-22 17:52:43 +00:00
|
|
|
<%= link_to l(:button_cancel), "#", :onclick => 'Element.hide("edit-news")' %>
|
|
|
|
<% end %>
|
2008-02-03 14:38:04 +00:00
|
|
|
<div id="preview" class="wiki"></div>
|
2007-09-22 17:52:43 +00:00
|
|
|
</div>
|
|
|
|
|
2008-03-29 20:03:20 +00:00
|
|
|
<p><em><% unless @news.summary.blank? %><%=h @news.summary %><br /><% end %>
|
2007-09-15 15:20:08 +00:00
|
|
|
<span class="author"><%= authoring @news.created_on, @news.author %></span></em></p>
|
2008-01-12 16:26:37 +00:00
|
|
|
<div class="wiki">
|
2007-04-21 12:10:50 +00:00
|
|
|
<%= textilizable(@news.description) %>
|
2008-01-12 16:26:37 +00:00
|
|
|
</div>
|
2007-03-12 17:59:02 +00:00
|
|
|
<br />
|
|
|
|
|
|
|
|
<div id="comments" style="margin-bottom:16px;">
|
|
|
|
<h3 class="icon22 icon22-comment"><%= l(:label_comment_plural) %></h3>
|
2008-03-05 15:41:54 +00:00
|
|
|
<% @comments.each do |comment| %>
|
2007-03-12 17:59:02 +00:00
|
|
|
<% next if comment.new_record? %>
|
|
|
|
<div class="contextual">
|
2008-03-05 15:41:54 +00:00
|
|
|
<%= link_to_if_authorized image_tag('delete.png'), {:controller => 'news', :action => 'destroy_comment', :id => @news, :comment_id => comment},
|
|
|
|
:confirm => l(:text_are_you_sure), :method => :post, :title => l(:button_delete) %>
|
2007-03-12 17:59:02 +00:00
|
|
|
</div>
|
2008-03-05 15:41:54 +00:00
|
|
|
<h4><%= authoring comment.created_on, comment.author %></h4>
|
2007-12-12 22:57:20 +00:00
|
|
|
<%= textilizable(comment.comments) %>
|
2008-03-05 15:41:54 +00:00
|
|
|
<% end if @comments.any? %>
|
2007-03-12 17:59:02 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<% if authorize_for 'news', 'add_comment' %>
|
2007-04-25 15:06:20 +00:00
|
|
|
<p><%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %></p>
|
2007-04-07 18:56:12 +00:00
|
|
|
<% form_tag({:action => 'add_comment', :id => @news}, :id => "add_comment_form", :style => "display:none;") do %>
|
2007-12-12 22:57:20 +00:00
|
|
|
<%= text_area 'comment', 'comments', :cols => 80, :rows => 15, :class => 'wiki-edit' %>
|
|
|
|
<%= wikitoolbar_for 'comment_comments' %>
|
2007-04-07 18:56:12 +00:00
|
|
|
<p><%= submit_tag l(:button_add) %></p>
|
2007-03-12 17:59:02 +00:00
|
|
|
<% end %>
|
2007-07-18 17:22:19 +00:00
|
|
|
<% end %>
|
2007-12-07 18:42:40 +00:00
|
|
|
|
2008-01-02 22:41:53 +00:00
|
|
|
<% html_title @news.title -%>
|