_module_result.rhtml
919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<h5><%= _('Metric Result') %> </h5>
<strong>
<%= _('Module:') %>
<%= module_result.module.name %>
</strong>
<br/>
<hr/>
<table id="project_metric_result">
<thead>
<tr>
<th>Metric</th>
<th>Value</th>
<th>Weight</th>
<th>Threshold</th>
</tr>
</thead>
<tbody>
<% module_result.metric_results.each do |metric_result| %>
<% range = metric_result.range %>
<tr title=" <%= range.comments %>">
<td><%= metric_result.metric.name %></td>
<td><%= metric_result.value %></td>
<td><%= metric_result.weight %></td>
<td style="background-color: #<%= range.color[2..-1] %>"><%= range.label %></td>
</tr>
<% end %>
</tbody>
<tfoot>
<tr>
<td colspan = "4" align = "right">
<strong>
<%= _('Grade:') %>
<%= module_result.grade %>
</strong>
</td>
</tr>
</tfoot>
</table>