* "start date" and "% done" fields added on issues * project calendar added * gantt chart added (exportable to pdf) * multiple file upload for issues attachments * user custom field displayed on account/show * default configuration improved (default roles, trackers, status, permissions and workflows) * fixed: project settings now displayed according to user's permissions git-svn-id: http://redmine.rubyforge.org/svn/trunk@44 e93f8b46-1217-0410-a6f0-8f06a7374b81
22 lines
714 B
Plaintext
22 lines
714 B
Plaintext
<h2><%= @news.title %></h2>
|
|
|
|
<p>
|
|
<b><%=l(:field_summary)%></b>: <%= @news.summary %><br />
|
|
<b><%=l(:field_author)%></b>: <%= @news.author.display_name %><br />
|
|
<b><%=l(:field_created_on)%></b>: <%= format_time(@news.created_on) %>
|
|
</p>
|
|
|
|
<%= textilizable auto_link @news.description %>
|
|
|
|
<% if authorize_for('news', 'edit') %>
|
|
<%= start_form_tag ({:controller => 'news', :action => 'edit', :id => @news}, :method => 'get' ) %>
|
|
<%= submit_tag l(:button_edit) %>
|
|
<%= end_form_tag %>
|
|
<% end %>
|
|
|
|
<% if authorize_for('news', 'destroy') %>
|
|
<%= start_form_tag ({:controller => 'news', :action => 'destroy', :id => @news}) %>
|
|
<%= submit_tag l(:button_delete) %>
|
|
<%= end_form_tag %>
|
|
<% end %>
|