2012-02-11 12:56:18 -05:00
|
|
|
-# The container tag
|
|
|
|
-# available local variables
|
|
|
|
-# 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
|
|
|
|
-# paginator: the paginator that renders the pagination tags inside
|
|
|
|
= paginator.render do
|
2016-12-23 04:37:12 -05:00
|
|
|
.gl-pagination
|
2015-09-19 10:22:04 -04:00
|
|
|
%ul.pagination.clearfix
|
2015-09-17 14:24:47 -04:00
|
|
|
- unless current_page.first?
|
2016-05-31 16:14:16 -04:00
|
|
|
= first_page_tag unless total_pages < 5 # As kaminari will always show the first 5 pages
|
2016-01-20 12:42:13 -05:00
|
|
|
= prev_page_tag
|
2013-04-06 15:32:23 -04:00
|
|
|
- each_page do |page|
|
|
|
|
- if page.left_outer? || page.right_outer? || page.inside_window?
|
|
|
|
= page_tag page
|
|
|
|
- elsif !page.was_truncated?
|
|
|
|
= gap_tag
|
2016-01-20 12:42:13 -05:00
|
|
|
= next_page_tag
|
2015-09-17 14:24:47 -04:00
|
|
|
- unless current_page.last?
|
2016-05-31 16:14:16 -04:00
|
|
|
= last_page_tag unless total_pages < 5
|