summaryrefslogtreecommitdiffstats
path: root/app/views/news
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-16 12:15:31 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-16 12:15:31 +0000
commit236c735d08c097cfe1a7e5f5c52a9dd6711250aa (patch)
treed819b1a914651602c965cc32f0ce04dd90fdd052 /app/views/news
parente5562afcd30998c0ed3d5b40c0a9c1cb3367518d (diff)
downloadredmine-236c735d08c097cfe1a7e5f5c52a9dd6711250aa.tar.gz
redmine-236c735d08c097cfe1a7e5f5c52a9dd6711250aa.zip
contextual links redesign
git-svn-id: http://redmine.rubyforge.org/svn/trunk@93 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/news')
-rw-r--r--app/views/news/show.rhtml28
1 files changed, 12 insertions, 16 deletions
diff --git a/app/views/news/show.rhtml b/app/views/news/show.rhtml
index 890184b1a..e5f199fa2 100644
--- a/app/views/news/show.rhtml
+++ b/app/views/news/show.rhtml
@@ -1,29 +1,25 @@
+<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>
+
<h2><%= @news.title %></h2>
<p><em><%= @news.summary %><br />
<%= @news.author.display_name %>, <%= format_time(@news.created_on) %></em></p>
<br />
<%= textilizable auto_link @news.description %>
-
-<div style="float:right;">
-<% if authorize_for('news', 'destroy') %>
- <%= start_form_tag ({:controller => 'news', :action => 'destroy', :id => @news}) %>
- <%= submit_tag l(:button_delete) %>
- <%= end_form_tag %>
-<% end %>
-</div>
-
-<p><%= link_to_if_authorized l(:button_edit), :controller => 'news', :action => 'edit', :id => @news %></p>
+<br />
<div id="comments" style="margin-bottom:16px;">
<h3><%= 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 style="float:right;">
- <small><%= 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 %></small>
-</div>
-<%= simple_format(auto_link(h comment.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), :post => true, :class => 'pic picDelete' %>
+ </div>
+ <%= simple_format(auto_link(h comment.comment))%>
<% end if @news.comments_count > 0 %>
</div>