choose_metric.html.erb
581 Bytes
<h2><%= @configuration_content.name %> Configuration</h2>
<table id="project_info">
<tr>
<h5>Metric Collector: <%= @base_tool %></h5>
</tr>
<tr>
<h5>Choose a metric to add:</h5>
</tr>
<% @supported_metrics.each do |metric| %>
<tr class="metric" title="<%= metric.name %>">
<td>
<%= link_to metric.name, :controller => "mezuro_plugin_metric_configuration", :action => "new_metric_configuration",
:metric_name => metric.name, :base_tool => @base_tool, :id => @configuration_content.id %>
</td>
</tr>
<% end %>
</table>