Project

General

Profile

Patch #9499 ยป redmine-fix-typos-for-r7695.patch

Igor Zubkov, 2011-10-31 09:56

View differences:

app/views/queries/_columns.html.erb
2 2
  <tr>
3 3
    <td style="padding-left:0">
4 4
      <%= label_tag "available_columns", l(:description_available_columns) %>
5
      <br \>
5
      <br />
6 6
      <%= select_tag 'available_columns',
7 7
              options_for_select((query.available_columns - query.columns).collect {|column| [column.caption, column.name]}),
8 8
              :multiple => true, :size => 10, :style => "width:150px" %>
......
15 15
    </td>
16 16
    <td>
17 17
      <%= label_tag "selected_columns", l(:description_selected_columns) %>
18
      <br \>
18
      <br />
19 19
      <%= select_tag 'c[]',
20 20
              options_for_select(query.columns.collect {|column| [column.caption, column.name]}),
21 21
              :id => 'selected_columns', :multiple => true, :size => 10, :style => "width:150px" %>
    (1-1/1)