summaryrefslogtreecommitdiff
path: root/app/views/kaminari/gitlab/_page.html.haml
blob: b000a490e3eb29bba42a28ec5348a2a45a37d2d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-#  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
-#    per_page:      number of items to fetch per page
-#    remote:        data-remote
%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?),
  ('d-none d-md-block' if !page.current?) ] }
  = link_to page, url, { remote: remote, rel: page.next? ? 'next' : page.prev? ? 'prev' : nil, class: ['page-link', active_when(page.current?)] }