Sha256: ea54aa8049e8aba947243d924f509b7defb531646c9aab58b67ca4053f33a9d6
Contents?: true
Size: 480 Bytes
Versions: 12
Compression:
Stored size: 480 Bytes
Contents
<h1><%= params[:id] %></h1> <table> <tr> <th>Month</th> <th>N</th> <% 12.times do |month| %> <th><%= (month + 1).ordinalize %> month</th> <% end %> </tr> <% @report.month_cohorts.each do |cohort_key| %> <tr class="<%= cycle('odd', 'even') %>"> <td><%= cohort_key %></td> <% @report.percent_line(cohort_key)[0,13].each do |val| %> <td style="text-align: right;"><%= val %></td> <% end %> </tr> <% end %> </table>
Version data entries
12 entries across 12 versions & 1 rubygems