Replace will_paginate with kaminari. Fixed foodcoop/users page.
This commit is contained in:
parent
1708df3f6c
commit
ab81ef09d5
17 changed files with 162 additions and 64 deletions
12
app/views/kaminari/_first_page.html.haml
Normal file
12
app/views/kaminari/_first_page.html.haml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
-#
|
||||
Link to the "First" page
|
||||
- available local variables
|
||||
url: url to the first page
|
||||
current_page: a page object for the currently displayed page
|
||||
num_pages: total number of pages
|
||||
per_page: number of items to fetch per page
|
||||
remote: data-remote
|
||||
|
||||
- unless current_page.first?
|
||||
%li{:class => "first"}
|
||||
= link_to_unless current_page.first?, raw(t 'views.pagination.first'), url, :remote => remote
|
||||
11
app/views/kaminari/_gap.html.haml
Normal file
11
app/views/kaminari/_gap.html.haml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
-#
|
||||
Non-link tag that stands for skipped pages...
|
||||
- available local variables
|
||||
current_page: a page object for the currently displayed page
|
||||
num_pages: total number of pages
|
||||
per_page: number of items to fetch per page
|
||||
remote: data-remote
|
||||
|
||||
%li{:class => "page gap disabled"}
|
||||
%a{:href => "#", :onclick => "return false;"}
|
||||
= raw(t 'views.pagination.truncate')
|
||||
13
app/views/kaminari/_last_page.html.haml
Normal file
13
app/views/kaminari/_last_page.html.haml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
-#
|
||||
Link to the "Last" page
|
||||
- available local variables
|
||||
url: url to the last page
|
||||
current_page: a page object for the currently displayed page
|
||||
num_pages: total number of pages
|
||||
per_page: number of items to fetch per page
|
||||
remote: data-remote
|
||||
|
||||
- unless current_page.last?
|
||||
%li{:class=>"last next"}
|
||||
-# "next" class present for border styling in twitter bootstrap %>
|
||||
= link_to_unless current_page.last?, raw(t 'views.pagination.last'), url, {:remote => remote}
|
||||
12
app/views/kaminari/_next_page.html.haml
Normal file
12
app/views/kaminari/_next_page.html.haml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
-#
|
||||
Link to the "Next" page
|
||||
- available local variables
|
||||
url: url to the next page
|
||||
current_page: a page object for the currently displayed page
|
||||
num_pages: total number of pages
|
||||
per_page: number of items to fetch per page
|
||||
remote: data-remote
|
||||
|
||||
- unless current_page.last?
|
||||
%li{:class=>"next_page"}
|
||||
= link_to_unless current_page.last?, raw(t 'views.pagination.next'), url, :rel => 'next', :remote => remote
|
||||
11
app/views/kaminari/_page.html.haml
Normal file
11
app/views/kaminari/_page.html.haml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
-#
|
||||
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
|
||||
num_pages: total number of pages
|
||||
per_page: number of items to fetch per page
|
||||
remote: data-remote
|
||||
%li{:class=>"page #{' active' if page.current? }"}
|
||||
= link_to page, url, opts = {:remote => remote, :rel => page.next? ? 'next' : page.prev? ? 'prev' : nil}
|
||||
21
app/views/kaminari/_paginator.html.haml
Normal file
21
app/views/kaminari/_paginator.html.haml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
-#
|
||||
The container tag
|
||||
- available local variables
|
||||
current_page: a page object for the currently displayed page
|
||||
num_pages: total number of pages
|
||||
per_page: number of items to fetch per page
|
||||
remote: data-remote
|
||||
paginator: the paginator that renders the pagination tags inside
|
||||
|
||||
= paginator.render do
|
||||
%nav.pagination
|
||||
%ul
|
||||
= first_page_tag unless current_page.first?
|
||||
= prev_page_tag unless current_page.first?
|
||||
- each_page do |page|
|
||||
- if page.left_outer? || page.right_outer? || page.inside_window?
|
||||
= page_tag page
|
||||
- elsif !page.was_truncated?
|
||||
= gap_tag
|
||||
= next_page_tag unless current_page.last?
|
||||
= last_page_tag unless current_page.last?
|
||||
12
app/views/kaminari/_prev_page.html.haml
Normal file
12
app/views/kaminari/_prev_page.html.haml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
-#
|
||||
Link to the "Previous" page
|
||||
- available local variables
|
||||
url: url to the previous page
|
||||
current_page: a page object for the currently displayed page
|
||||
num_pages: total number of pages
|
||||
per_page: number of items to fetch per page
|
||||
remote: data-remote
|
||||
|
||||
- unless current_page.first?
|
||||
%li{:class=>"prev"}
|
||||
= link_to_unless current_page.first?, raw(t 'views.pagination.previous'), url, :rel => 'prev', :remote => remote
|
||||
Loading…
Add table
Add a link
Reference in a new issue