diff --git a/views/search/_catalog_result_list.html.erb b/views/search/_catalog_result_list.html.erb
index 3e8c91e..4e64576 100644
--- a/views/search/_catalog_result_list.html.erb
+++ b/views/search/_catalog_result_list.html.erb
@@ -4,47 +4,45 @@
-
- <% if !search[:results].blank? %>
+ <% if !search[:results].blank? %>
- <% if multiple_search?(@searches) %>
-
<%= @names[name] %>
- <% if search[:results].total_entries > SearchController::MULTIPLE_SEARCH_LIMIT %>
- <%= link_to(_('see all (%d)') % search[:results].total_entries, params.merge(:action => name), :class => 'see-more' ) %>
- <% end %>
+ <% if multiple_search?(@searches) %>
+
<%= @names[name] %>
+ <% if search[:results].total_entries > SearchController::MULTIPLE_SEARCH_LIMIT %>
+ <%= link_to(_('see all (%d)') % search[:results].total_entries, params.merge(:action => name), :class => 'see-more' ) %>
<% end %>
+ <% end %>
- <% display = display_filter(name, params[:display]) %>
-
-
-
- <% search[:results].each do |hit| %>
- <% partial = partial_for_class(hit.class, display) %>
- <% variable_name = partial.gsub("#{display}_", '').to_sym %>
- <%= render :partial => partial, :locals => {variable_name => hit} %>
- <% end %>
-
-
- <% else %>
- <% if multiple_search? %>
-
<%= @names[name] %>
- <% end %>
+ <% display = display_filter(name, params[:display]) %>
-
+
+
+ <% search[:results].each do |hit| %>
+ <% partial = partial_for_class(hit.class, display) %>
+ <% variable_name = partial.gsub("#{display}_", '').to_sym %>
+ <%= render :partial => partial, :locals => {variable_name => hit} %>
+ <% end %>
+
+
+ <% else %>
+ <% if multiple_search? %>
+
<%= @names[name] %>
+ <% end %>
-
+
-
+
-
- <% @selected_categories.each do |category| %>
-
- <%= link_to _("#{category.name}") + " (#{category.software_infos.count})", {:controller => :search, :action => :software_infos, :selected_categories_id => [category.id]} %>
- <% end %>
-
+
- <% end %>
-
+