2007-03-12 20:59:02 +03:00
|
|
|
<div class="contextual">
|
2011-03-04 17:32:58 +03:00
|
|
|
<%= watcher_tag(@news, User.current) %>
|
2011-09-17 12:06:37 +04:00
|
|
|
<%= link_to(l(:button_edit),
|
2010-11-20 12:38:54 +03:00
|
|
|
edit_news_path(@news),
|
|
|
|
:class => 'icon icon-edit',
|
|
|
|
:accesskey => accesskey(:edit),
|
2012-07-22 17:29:26 +04:00
|
|
|
:onclick => '$("#edit-news").show(); return false;') if User.current.allowed_to?(:manage_news, @project) %>
|
2012-07-07 18:36:49 +04:00
|
|
|
<%= delete_link news_path(@news) 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;">
|
2012-04-25 21:17:49 +04:00
|
|
|
<%= labelled_form_for :news, @news, :url => news_path(@news),
|
2012-01-30 02:39:06 +04:00
|
|
|
:html => { :id => 'news-form', :multipart => true, :method => :put } do |f| %>
|
2007-09-22 21:52:43 +04:00
|
|
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
|
|
|
<%= submit_tag l(:button_save) %>
|
2012-09-16 18:18:43 +04:00
|
|
|
<%= preview_link preview_news_path(:project_id => @project, :id => @news), 'news-form' %> |
|
2012-07-22 17:29:26 +04:00
|
|
|
<%= link_to l(:button_cancel), "#", :onclick => '$("#edit-news").hide(); 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">
|
2012-01-30 02:39:06 +04:00
|
|
|
<%= textilizable(@news, :description) %>
|
2008-01-12 19:26:37 +03:00
|
|
|
</div>
|
2012-01-30 02:39:06 +04:00
|
|
|
<%= link_to_attachments @news %>
|
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},
|
2012-07-07 18:36:49 +04:00
|
|
|
:data => {: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>
|
|
|
|
|
2012-02-11 21:14:56 +04:00
|
|
|
<% if @news.commentable? %>
|
2007-04-25 19:06:20 +04:00
|
|
|
<p><%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %></p>
|
2012-04-25 21:17:49 +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
|
|
|
|
2011-10-02 22:45:17 +04:00
|
|
|
<% html_title @news.title -%>
|
2008-06-18 20:49:40 +04:00
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= stylesheet_link_tag 'scm' %>
|
|
|
|
<% end %>
|