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

Version Path
cohortly-0.0.93 app/views/cohortly/reports/show.html.erb
cohortly-0.0.92 app/views/cohortly/reports/show.html.erb
cohortly-0.0.9.1 app/views/cohortly/reports/show.html.erb
cohortly-0.0.9 app/views/cohortly/reports/show.html.erb
cohortly-0.0.8 app/views/cohortly/reports/show.html.erb
cohortly-0.0.7 app/views/cohortly/reports/show.html.erb
cohortly-0.0.6 app/views/cohortly/reports/show.html.erb
cohortly-0.0.5 app/views/cohortly/reports/show.html.erb
cohortly-0.0.4 app/views/cohortly/reports/show.html.erb
cohortly-0.0.3 app/views/cohortly/reports/show.html.erb
cohortly-0.0.2 app/views/cohortly/reports/show.html.erb
cohortly-0.0.1 app/views/cohortly/reports/show.html.erb