kaminari--kaminari/app/views/kaminari/_next_page.html.erb

12 lines
442 B
Plaintext
Raw Normal View History

<%# Link to the "Next" page
- available local variables
url: url to the next page
2011-02-27 15:17:09 +00:00
current_page: a page object for the currently displayed page
2012-05-25 06:31:53 +00:00
total_pages: total number of pages
per_page: number of items to fetch per page
remote: data-remote
-%>
2011-04-16 12:46:52 +00:00
<span class="next">
<%= link_to_unless current_page.last?, t('views.pagination.next').html_safe, url, :rel => 'next', :remote => remote %>
2011-02-05 14:20:06 +00:00
</span>