2012-02-11 12:56:18 -05:00
|
|
|
-# 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
|
2016-05-31 16:14:16 -04:00
|
|
|
-# total_pages: total number of pages
|
2012-02-11 12:56:18 -05:00
|
|
|
-# per_page: number of items to fetch per page
|
|
|
|
-# remote: data-remote
|
2020-01-24 10:09:00 -05:00
|
|
|
%li.page-item.js-pagination-page{ class: [active_when(page.current?),
|
|
|
|
('sibling' if page.next? || page.prev?),
|
|
|
|
('js-first-button' if page.first?),
|
|
|
|
('js-last-button' if page.last?),
|
2021-04-12 11:09:30 -04:00
|
|
|
('d-none d-md-block' if !page.current?)] }
|
2020-05-12 17:08:14 -04:00
|
|
|
= link_to page, url, { remote: remote, rel: page.next? ? 'next' : page.prev? ? 'prev' : nil, class: ['page-link', active_when(page.current?)] }
|