4ada50985a
* Replace will_paginate with kaminari * Use #page instead of #paginate in controllers * Replace will_paginate.page_gap with pagination.truncate in i18n * Customize kaminari views to match prior styles * Set kaminari options to match prior behavior * Replace will_paginate with paginate in views
10 lines
456 B
Plaintext
10 lines
456 B
Plaintext
-# Link to the "Previous" page
|
|
-# available local variables
|
|
-# url: url to the previous 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
|
|
%span.prev
|
|
= link_to_unless current_page.first?, safe_join([fa_icon('chevron-left'), t('pagination.prev')], ' '), url, rel: 'prev', remote: remote
|