Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_page.html.haml « gitlab « kaminari « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33e00256100c78dc57222e939c657f1681bf9e95 (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' }