You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

custom_measures.html.erb 683B

12345678910111213141516171819202122232425
  1. <table class="width100">
  2. <tr>
  3. <td width="100%">
  4. <%
  5. (1..10).each do |index|
  6. metric=widget_properties["metric#{index}"]
  7. if metric
  8. m=measure(metric)
  9. if m
  10. %>
  11. <div class="dashbox">
  12. <p class="title"><%= metric.short_name -%></p>
  13. <p>
  14. <span class="big"><%= format_measure(m, :url => url_for_drilldown(m)) -%></span>
  15. <%= dashboard_configuration.selected_period? ? format_variation(m) : trend_icon(m) -%>
  16. </p>
  17. </div>
  18. <%
  19. end
  20. end
  21. end
  22. %>
  23. </td>
  24. </tr>
  25. </table>