##// END OF EJS Templates
Rails3: view: html_safe for issues/bulk_edit.html.erb...
Toshi MARUYAMA -
r8327:0fe8a4248d4d
parent child
Show More
@@ -1,9 +1,14
1 <h2><%= l(:label_bulk_edit_selected_issues) %></h2>
1 <h2><%= l(:label_bulk_edit_selected_issues) %></h2>
2
2
3 <ul><%= @issues.collect {|i| content_tag('li', link_to(h("#{i.tracker} ##{i.id}"), { :action => 'show', :id => i }) + h(": #{i.subject}")) }.join("\n") %></ul>
3 <ul><%= @issues.collect {|i|
4 content_tag('li',
5 link_to(h("#{i.tracker} ##{i.id}"),
6 { :action => 'show', :id => i }
7 ) + h(": #{i.subject}"))
8 }.join("\n").html_safe %></ul>
4
9
5 <% form_tag(:action => 'bulk_update') do %>
10 <% form_tag(:action => 'bulk_update') do %>
6 <%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join %>
11 <%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join("\n").html_safe %>
7 <div class="box tabular">
12 <div class="box tabular">
8 <fieldset class="attributes">
13 <fieldset class="attributes">
9 <legend><%= l(:label_change_properties) %></legend>
14 <legend><%= l(:label_change_properties) %></legend>
General Comments 0
You need to be logged in to leave comments. Login now