21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-02 00:40:49 +02:00
chexpire/app/views/kaminari/_page.html.erb
2018-07-03 19:45:24 +02:00

16 lines
560 B
Plaintext

<%# Link showing page number
- available local variables
page: a page object for "this" page
url: url to this page
current_page: a page object for the currently displayed page
total_pages: total number of pages
per_page: number of items to fetch per page
remote: data-remote
-%>
<li class="page-item <%= ' active' if page.current? %>">
<%= link_to page, url, remote: remote, rel: page.rel, class: "page-link" %>
<% if page.current? %>
<span class="sr-only">(current)</span>
<% end %>
</li>