noesya/osuny

View on GitHub
app/views/admin/education/academic_years/_list.html.erb

Summary

Maintainability
Test Coverage
<div class="table-responsive">
  <table class="<%= table_classes %>">
    <thead>
      <tr>
        <th><%= Education::AcademicYear.human_attribute_name('year') %></th>
        <th><%= Education::Cohort.model_name.human(count: 2) %></th>
        <th><%= University::Person::Alumnus.model_name.human(count: 2) %></th>
      </tr>
    </thead>
    <tbody>
      <% academic_years.ordered.each do |academic_year| %>
        <tr>
          <td>
            <%= link_to academic_year, [:admin, academic_year] %>
          </td>
          <td><%= academic_year.cohorts.count %></td>
          <td><%= academic_year.people.count %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>