debian-mirror-gitlab/app/views/kaminari/gitlab/_without_count.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
460 B
Plaintext
Raw Normal View History

2020-07-28 23:09:34 +05:30
.gl-pagination.gl-mt-3
2018-11-08 19:23:39 +05:30
%ul.pagination.justify-content-center
2017-09-10 17:25:29 +05:30
- if previous_path
2018-11-08 19:23:39 +05:30
%li.page-item.prev
2020-03-13 15:44:24 +05:30
= link_to previous_path, rel: 'prev', class: 'page-link' do
2022-07-23 23:45:48 +05:30
= sprite_icon('chevron-lg-left', size: 8)
2020-03-13 15:44:24 +05:30
= s_('Pagination|Prev')
2017-09-10 17:25:29 +05:30
- if next_path
2018-11-08 19:23:39 +05:30
%li.page-item.next
2020-03-13 15:44:24 +05:30
= link_to next_path, rel: 'next', class: 'page-link' do
= s_('Pagination|Next')
2022-07-23 23:45:48 +05:30
= sprite_icon('chevron-lg-right', size: 8)