web/app/views/results/_results_nav.html.erb
changeset 226 4e1806b2569a
parent 225 1717c8a3eba6
child 227 0a78e48d766a
--- a/web/app/views/results/_results_nav.html.erb	Wed Oct 01 00:13:35 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,26 +0,0 @@
-<%= content_for :results_navigation do %>
-  <div class="span3 well">
-    <ul class="nav nav-list">
-      <% all_languages.each do |lang| %>
-        <li class="nav-header"><%= lang.name %></li>
-        <ul class="nav nav-list">
-          <% lang.runtimes.each do |runtime| %>
-            <ul class="nav nav-list">
-              <li class="nav-header"><%= runtime.name %></li>
-              <ul class="nav nav-list">
-                <% runtime.benchmark_configurations.each do |benchmark_configuration| %>
-                  <%= nav_tab(benchmark_configuration.id, 
-                              current_tab: current_tab, 
-                              class: "special") do
-                                link_to(benchmark_configuration.operating_system.name_normalized, 
-                                        configuration_results_path(id: benchmark_configuration.id)) 
-                              end %>
-                <% end %>
-              </ul>
-            </ul>
-          <% end %>
-        </ul>
-      <% end %>
-    </ul>
-  </div>
-<% end %>