noesya/osuny

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

Summary

Maintainability
Test Coverage
<% content_for :title, @academic_year %>

<% if @academic_year.cohorts.any? %>
  <h2><%= Education::Cohort.model_name.human(count: 2) %></h2>
  <%= render 'admin/education/cohorts/list', cohorts: @academic_year.cohorts.ordered %>
<% end %>

<% if @academic_year.people.any? %>
  <h2 class="mt-5"><%= University::Person::Alumnus.model_name.human(count: 2) %></h2>
  <%= render 'admin/administration/alumni/list', alumni: @academic_year.people.ordered(current_language) %>
<% end %>