noesya/osuny

View on GitHub
app/views/admin/research/publications/index.html.erb

Summary

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

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

<%= render 'admin/research/publications/list', publications: @publications %>
<%= paginate @publications %>

<% content_for :action_bar_right do %>
  <%= create_link Research::Publication %>
<% end %>