debian-mirror-gitlab/app/views/kaminari/gitlab/_next_page.html.haml

15 lines
562 B
Plaintext
Raw Normal View History

2014-09-02 18:07:02 +05:30
-# 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
2014-09-02 18:07:02 +05:30
-# per_page: number of items to fetch per page
-# remote: data-remote
2018-11-08 19:23:39 +05:30
- page_url = current_page.last? ? '#' : url
%li.page-item.js-next-button{ class: ('disabled' if current_page.last?) }
2020-03-13 15:44:24 +05:30
= link_to page_url, rel: 'next', remote: remote, class: 'page-link' do
= s_('Pagination|Next')
= sprite_icon('angle-right', size: 8)