diff -r 02126b7e1cbb -r 28dccacb2bc1 web/app/views/index/_compare_table.html.erb --- a/web/app/views/index/_compare_table.html.erb Tue Jun 25 23:35:43 2013 +0200 +++ b/web/app/views/index/_compare_table.html.erb Wed Jun 26 00:05:56 2013 +0200 @@ -5,19 +5,19 @@ Měsíc - <% runtimes.each do |runtime| %> - <%= runtime.name %> + <% benchmark_configurations.each do |benchmark_configuration| %> + <%= benchmark_configuration.name %> <% end %> - <% all_dates_when_performed(runtimes).each do |date| %> + <% all_dates_when_performed(benchmark_configurations).each do |date| %> <%= content_tag :th, (make_chart ? date_to_millis(date) : t(date)), 'data-timestamp' => date_to_millis(date) %> - <% runtimes.each do |runtime| %> - <%= runtime.results_of(benchmark_info, date).try(:min_duration) %> + <% benchmark_configurations.each do |benchmark_configuration| %> + <%= benchmark_configuration.results_of(benchmark_info, date).try(:min_duration) %> <% end %> <% end %>