app/views/admin/research/theses/index.html.erb
<% content_for :title, Research::Thesis.model_name.human(count: 2) %>
<div class="d-flex justify-content-between mb-4">
<p>
<%= @theses.total_count %>
<%= Research::Laboratory.model_name.human(count: @theses.total_count).downcase %>
</p>
<%= render 'filters', current_path: admin_research_theses_path %>
</div>
<%= render 'admin/research/theses/list', theses: @theses %>
<%= paginate @theses %>
<% content_for :action_bar_right do %>
<%= create_link Research::Thesis %>
<% end %>