gitlab-org--gitlab-foss/app/views/kaminari/gitlab/_next_page.html.haml

13 lines
521 B
Plaintext
Raw Normal View History

2012-02-11 17:56:18 +00:00
-# 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
2012-02-11 17:56:18 +00:00
-# per_page: number of items to fetch per page
-# remote: data-remote
2018-04-13 17:40:19 +00:00
- page_url = current_page.last? ? '#' : url
%li.page-item.js-next-button{ class: ('disabled' if current_page.last?) }
2018-04-13 17:40:19 +00:00
= link_to raw(t 'views.pagination.next'), page_url, rel: 'next', remote: remote, class: 'page-link'