noesya/osuny

View on GitHub
app/views/admin/education/schools/index.html.erb

Summary

Maintainability
Test Coverage
<% content_for :title, Education::School.model_name.human(count: 2) %>

<div class="d-flex justify-content-between mb-4">
  <p>
    <%= @schools.total_count %>
    <%= Education::School.model_name.human(count: @schools.total_count).downcase %>
  </p>
  <%= render 'filters', current_path: admin_education_schools_path %>
</div>

<%= render 'admin/education/schools/list', schools: @schools %>
<%= paginate @schools %>

<% content_for :action_bar_right do %>
  <%= create_link Education::School %>
<% end %>