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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
725 B
Plaintext
Raw Normal View History

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
-# 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?)] }