HTML corrections
This commit is contained in:
parent
23a857bf75
commit
2a70e2704f
|
@ -5,6 +5,7 @@
|
|||
<tr>
|
||||
<td><label for="username-pulldown"><%= l(:field_login) %></label></td>
|
||||
<td><label for="password-pulldown"><%= l(:field_password) %></label></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><%= text_field_tag 'username', nil, :tabindex => '1', :id => 'username-pulldown' %></td>
|
||||
|
|
|
@ -74,7 +74,6 @@
|
|||
</ul>
|
||||
</li>
|
||||
<% end %>
|
||||
<li>
|
||||
<%= render_menu_node(help_menu_item) %>
|
||||
<% unless User.current.logged? %>
|
||||
<% if Setting.self_registration? %>
|
||||
|
@ -98,7 +97,6 @@
|
|||
</ul>
|
||||
</li>
|
||||
<% end %>
|
||||
</li>
|
||||
</ul>
|
||||
<% end %>
|
||||
</div>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<tr>
|
||||
<td style="padding-left:0">
|
||||
<%= label_tag "available_columns", l(:description_available_columns) %>
|
||||
<br \>
|
||||
<br />
|
||||
<%= select_tag 'available_columns',
|
||||
options_for_select((query.available_columns - query.columns).collect {|column| [column.caption, column.name]}),
|
||||
:multiple => true, :size => 10, :style => "width:150px" %>
|
||||
|
@ -15,7 +15,7 @@
|
|||
</td>
|
||||
<td>
|
||||
<%= label_tag "selected_columns", l(:description_selected_columns) %>
|
||||
<br \>
|
||||
<br />
|
||||
<%= select_tag 'c[]',
|
||||
options_for_select(query.columns.collect {|column| [column.caption, column.name]}),
|
||||
:id => 'selected_columns', :multiple => true, :size => 10, :style => "width:150px" %>
|
||||
|
|
|
@ -113,7 +113,7 @@ Event.observe(document,"dom:loaded", apply_filters_observer);
|
|||
<label for="cb_<%= field %>"><%= filter[1][:name] || l(("field_"+field.to_s.gsub(/\_id$/, "")).to_sym) %></label>
|
||||
</td>
|
||||
<td style="width:150px;">
|
||||
<%= label_tag "op_#{field}", l(:description_filter), :class => "hidden-for-sighted" %>
|
||||
<%= label_tag "operators_#{field}", l(:description_filter), :class => "hidden-for-sighted" %>
|
||||
<%= select_tag "op[#{field}]", options_for_select(operators_for_select(options[:type]), query.operator_for(field)), :id => "operators_#{field}", :onchange => "toggle_operator('#{field}');", :class => "select-small", :style => "vertical-align: top;" %>
|
||||
</td>
|
||||
<td>
|
||||
|
|
Loading…
Reference in New Issue