2014-09-02 18:07:02 +05:30
|
|
|
-# 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-06-16 23:09:34 +05:30
|
|
|
-# 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
|
2020-03-13 15:44:24 +05:30
|
|
|
%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-29 21:17:54 +05:30
|
|
|
('d-none d-md-block' if !page.current?)] }
|
2020-05-24 23:13:21 +05:30
|
|
|
= link_to page, url, { remote: remote, rel: page.next? ? 'next' : page.prev? ? 'prev' : nil, class: ['page-link', active_when(page.current?)] }
|