2007-03-12 20:59:02 +03:00
|
|
|
<div class="contextual">
|
2010-11-20 12:38:54 +03:00
|
|
|
<%= link_to(l(:button_edit),
|
|
|
|
edit_news_path(@news),
|
|
|
|
:class => 'icon icon-edit',
|
|
|
|
:accesskey => accesskey(:edit),
|
|
|
|
:onclick => 'Element.show("edit-news"); return false;') if User.current.allowed_to?(:manage_news, @project) %>
|
|
|
|
<%= link_to(l(:button_delete),
|
|
|
|
news_path(@news),
|
|
|
|
:confirm => l(:text_are_you_sure),
|
|
|
|
:method => :delete,
|
|
|
|
:class => 'icon icon-del') if User.current.allowed_to?(:manage_news, @project) %>
|
2007-03-12 20:59:02 +03:00
|
|
|
</div>
|
|
|
|
|
2010-01-08 00:28:45 +03:00
|
|
|
<h2><%= avatar(@news.author, :size => "24") %><%=h @news.title %></h2>
|
2007-03-12 20:59:02 +03:00
|
|
|
|
2009-10-22 21:42:17 +04:00
|
|
|
<% if authorize_for('news', 'edit') %>
|
2007-09-22 21:52:43 +04:00
|
|
|
<div id="edit-news" style="display:none;">
|
2010-09-27 20:51:12 +04:00
|
|
|
<% labelled_tabular_form_for :news, @news, :url => news_path(@news),
|
2010-09-21 19:20:37 +04:00
|
|
|
:html => { :id => 'news-form', :method => :put } do |f| %>
|
2007-09-22 21:52:43 +04:00
|
|
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
|
|
|
<%= submit_tag l(:button_save) %>
|
2008-02-03 17:38:04 +03:00
|
|
|
<%= link_to_remote l(:label_preview),
|
2010-09-27 20:51:12 +04:00
|
|
|
{ :url => preview_news_path(:project_id => @project),
|
2010-09-24 20:26:46 +04:00
|
|
|
:method => 'get',
|
2008-02-03 17:38:04 +03:00
|
|
|
:update => 'preview',
|
|
|
|
:with => "Form.serialize('news-form')"
|
|
|
|
}, :accesskey => accesskey(:preview) %> |
|
2009-10-22 21:42:17 +04:00
|
|
|
<%= link_to l(:button_cancel), "#", :onclick => 'Element.hide("edit-news"); return false;' %>
|
2007-09-22 21:52:43 +04:00
|
|
|
<% end %>
|
2008-02-03 17:38:04 +03:00
|
|
|
<div id="preview" class="wiki"></div>
|
2007-09-22 21:52:43 +04:00
|
|
|
</div>
|
2009-10-22 21:42:17 +04:00
|
|
|
<% end %>
|
2007-09-22 21:52:43 +04:00
|
|
|
|
2010-02-14 14:49:29 +03:00
|
|
|
<p><% unless @news.summary.blank? %><em><%=h @news.summary %></em><br /><% end %>
|
|
|
|
<span class="author"><%= authoring @news.created_on, @news.author %></span></p>
|
2008-01-12 19:26:37 +03:00
|
|
|
<div class="wiki">
|
2007-04-21 16:10:50 +04:00
|
|
|
<%= textilizable(@news.description) %>
|
2008-01-12 19:26:37 +03:00
|
|
|
</div>
|
2007-03-12 20:59:02 +03:00
|
|
|
<br />
|
|
|
|
|
|
|
|
<div id="comments" style="margin-bottom:16px;">
|
2009-12-17 21:52:28 +03:00
|
|
|
<h3 class="comments"><%= l(:label_comment_plural) %></h3>
|
2008-03-05 18:41:54 +03:00
|
|
|
<% @comments.each do |comment| %>
|
2007-03-12 20:59:02 +03:00
|
|
|
<% next if comment.new_record? %>
|
|
|
|
<div class="contextual">
|
2010-09-23 19:20:19 +04:00
|
|
|
<%= link_to_if_authorized image_tag('delete.png'), {:controller => 'comments', :action => 'destroy', :id => @news, :comment_id => comment},
|
|
|
|
:confirm => l(:text_are_you_sure), :method => :delete, :title => l(:button_delete) %>
|
2007-03-12 20:59:02 +03:00
|
|
|
</div>
|
2010-01-08 00:28:45 +03:00
|
|
|
<h4><%= avatar(comment.author, :size => "24") %><%= authoring comment.created_on, comment.author %></h4>
|
2007-12-13 01:57:20 +03:00
|
|
|
<%= textilizable(comment.comments) %>
|
2008-03-05 18:41:54 +03:00
|
|
|
<% end if @comments.any? %>
|
2007-03-12 20:59:02 +03:00
|
|
|
</div>
|
|
|
|
|
2010-09-22 20:25:09 +04:00
|
|
|
<% if authorize_for 'comments', 'create' %>
|
2007-04-25 19:06:20 +04:00
|
|
|
<p><%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %></p>
|
2010-09-22 20:25:09 +04:00
|
|
|
<% form_tag({:controller => 'comments', :action => 'create', :id => @news}, :id => "add_comment_form", :style => "display:none;") do %>
|
2009-02-02 20:34:12 +03:00
|
|
|
<div class="box">
|
|
|
|
<%= text_area 'comment', 'comments', :cols => 80, :rows => 15, :class => 'wiki-edit' %>
|
|
|
|
<%= wikitoolbar_for 'comment_comments' %>
|
|
|
|
</div>
|
2007-04-07 22:56:12 +04:00
|
|
|
<p><%= submit_tag l(:button_add) %></p>
|
2007-03-12 20:59:02 +03:00
|
|
|
<% end %>
|
2007-07-18 21:22:19 +04:00
|
|
|
<% end %>
|
2007-12-07 21:42:40 +03:00
|
|
|
|
2008-01-03 01:41:53 +03:00
|
|
|
<% html_title @news.title -%>
|
2008-06-18 20:49:40 +04:00
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= stylesheet_link_tag 'scm' %>
|
|
|
|
<% end %>
|