Rails3: view: html_safe for timelog/bulk_edit.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8308 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
576d333c2c
commit
0d5df3a73e
|
@ -2,12 +2,13 @@
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<%= @time_entries.collect {|i| content_tag('li',
|
<%= @time_entries.collect {|i| content_tag('li',
|
||||||
link_to(h("#{i.spent_on.strftime("%Y-%m-%d")} - #{i.project}: #{l(:label_f_hour_plural, :value => i.hours)}"), { :action => 'edit', :id => i })
|
link_to(h("#{i.spent_on.strftime("%Y-%m-%d")} - #{i.project}: #{l(:label_f_hour_plural, :value => i.hours)}"),
|
||||||
)}.join("\n") %>
|
{ :action => 'edit', :id => i })
|
||||||
|
)}.join("\n").html_safe %>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<% form_tag(:action => 'bulk_update') do %>
|
<% form_tag(:action => 'bulk_update') do %>
|
||||||
<%= @time_entries.collect {|i| hidden_field_tag('ids[]', i.id)}.join %>
|
<%= @time_entries.collect {|i| hidden_field_tag('ids[]', i.id)}.join.html_safe %>
|
||||||
<div class="box tabular">
|
<div class="box tabular">
|
||||||
<div>
|
<div>
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Reference in New Issue