web/app/views/index/_benchmarks_table.html.erb
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sun, 28 Sep 2014 23:19:44 +0100
changeset 222 c98af04e13ce
parent 128 b0083f806b57
child 235 99903c2acca1
permissions -rw-r--r--
Archive uploaded benchamrk data on a filesystem. Add an easy access to download archived data.

<div>
  <table class="table table-condensed">
    <thead>
      <tr>
        <th>Benchmark</th>

        <th>Min [ms]</th>
        <th style="color: gray;">Avg [ms]</th>
        <th style="color: gray;">Max [ms]</th>
      </tr>
    </thead>
    <tbody>
      <% results.benchmark_results.each do |result| %>
        <tr>
          <th><%= result.benchmark_info.name %></th>
          <td><%= result.min_duration %></td>
          <td style="color: gray;"><%= result.average_duration %></td>
          <td style="color: gray;"><%= result.max_duration %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>