Files
grecia/app/views/kaminari/_page.html.erb
Javi Martín f9ed186909 Add rubocop spacing rules
We were following these rules in most places; we just didn't define them
anywhere.
2019-09-10 21:04:56 +02:00

11 lines
304 B
Plaintext

<% if page.current? %>
<li class="current">
<span class="show-for-sr"><%= t("views.pagination.current") %></span>
<%= page %>
</li>
<% else %>
<li>
<%= link_to page, kaminari_path(url), { :remote => remote, :rel => page.next? ? "next" : page.prev? ? "prev" : nil } %>
</li>
<% end %>