mirror of
https://github.com/meineerde/redmine.git
synced 2026-02-11 13:15:20 +00:00
git-svn-id: http://redmine.rubyforge.org/svn/trunk@67 e93f8b46-1217-0410-a6f0-8f06a7374b81
17 lines
548 B
Plaintext
17 lines
548 B
Plaintext
<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>
|
|
|
|
<%= link_to_if_authorized l(:button_edit), :controller => 'news', :action => 'edit', :id => @news %>
|