web/app/views/settings/benchmark_configurations/_table.html.erb
changeset 106 eac4098d544d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/app/views/settings/benchmark_configurations/_table.html.erb	Tue Jun 25 22:11:10 2013 +0200
@@ -0,0 +1,16 @@
+<table class="table">
+  <tr>
+    <th>Configuration</th>
+    <th>Operations</th>
+  </tr>
+  <% benchmark_configurations.each do |configuration| %> 
+    <tr>
+      <td><%= link_to configuration.name, [:settings, configuration] %></td>
+      <td>
+        <%= link_to( [:settings, configuration], 
+                    method: :delete,
+                    class: "btn btn-danger") { "#{glyph(:trash)} Delete".html_safe } %>
+      </td>
+    </tr>
+  <% end %>
+</table>