gitlab-org--gitlab-foss/app/views/kaminari/gitlab/_prev_page.html.haml

13 lines
520 B
Plaintext
Raw Normal View History

2012-02-11 12:56:18 -05:00
-# 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
2012-02-11 12:56:18 -05:00
-# per_page: number of items to fetch per page
-# remote: data-remote
2018-04-13 13:40:19 -04:00
- page_url = current_page.first? ? '#' : url
%li.page-item{ class: ('disabled' if current_page.first?) }
2018-04-17 18:13:54 -04:00
= link_to raw(t 'views.pagination.previous'), page_url, rel: 'prev', remote: remote, class: 'page-link'