##// END OF EJS Templates
Fixed mailer (error when no assignee)...
Fixed mailer (error when no assignee) git-svn-id: http://redmine.rubyforge.org/svn/trunk@592 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r575:65be9d3c86f5
r589:7363428703e4
Show More
show.rhtml
31 lines | 1.6 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="contextual">
<%= link_to_if_authorized l(:button_edit), {:controller => 'news', :action => 'edit', :id => @news}, :class => 'icon icon-edit' %>
<%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy', :id => @news}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
</div>
<h2><%=h @news.title %></h2>
<p><em><% unless @news.summary.empty? %><%=h @news.summary %><br /><% end %>
Jean-Philippe Lang
Removed User#display_name (replaced by User#name)....
r575 <%= @news.author.name %>, <%= format_time(@news.created_on) %></em></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <br />
Jean-Philippe Lang
Added missing parentheses on news/show and removed useless call to auto_link...
r452 <%= textilizable(@news.description) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <br />
<div id="comments" style="margin-bottom:16px;">
<h3 class="icon22 icon22-comment"><%= 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 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), :method => :post, :class => 'icon icon-del' %>
</div>
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 <%= simple_format(auto_link(h comment.comments))%>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end if @news.comments_count > 0 %>
</div>
<% if authorize_for 'news', 'add_comment' %>
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 <p><%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %></p>
Jean-Philippe Lang
Added toggle_link helper....
r429 <% form_tag({:action => 'add_comment', :id => @news}, :id => "add_comment_form", :style => "display:none;") do %>
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 <%= text_area 'comment', 'comments', :cols => 60, :rows => 6 %>
Jean-Philippe Lang
Added toggle_link helper....
r429 <p><%= submit_tag l(:button_add) %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
added model Comment....
r78 <% end %>