mirror of
https://github.com/mcasimir/kaminari-bootstrap.git
synced 2022-11-09 13:46:52 -05:00
14 lines
445 B
Text
14 lines
445 B
Text
<%# Link to the "Next" page
|
|
- available local variables
|
|
url: url to the next 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
|
|
-%>
|
|
|
|
<% unless current_page.last? -%>
|
|
<li>
|
|
<%= link_to raw(t 'views.pagination.next'), url, :remote => remote, :rel => 'next' %>
|
|
</li>
|
|
<% end -%>
|