<%= link_to("#{@configuration_content.name} Configuration", @configuration_content.view_url) %>
<%= link_to "New Compound Metric", :controller => "mezuro_plugin_metric_configuration", :action => "new_compound",
:id => @configuration_content.id %>
Base Tools:
<% @base_tools.each do |base_tool| %>
<%= link_to base_tool.name, "#", :onclick => "jQuery(\"\##{base_tool.name}\").toggle();"%>
<% base_tool.supported_metrics.each do |metric| %>
      <%= link_to metric.name, :controller => "mezuro_plugin_metric_configuration", :action => "new_native",
:metric_name => metric.name, :base_tool_name => base_tool.name, :id => @configuration_content.id %>
<% end %>
<% end %>