* pagination theme for new admin view * align pagination widget correctly in desktop view * remove bottom pagination * re-add pagination to the bottom * use block styling for the links
12 lines
368 B
Text
12 lines
368 B
Text
<%= paginator.render do %>
|
|
<nav aria-label="<%= label %>" class="admin-pagination flex fs-s items-center">
|
|
<span id="pagination-description">
|
|
<span class="screen-reader-only">Currently showing: </span>
|
|
<%= page_entries_info scope %>
|
|
</span>
|
|
<ul class="flex">
|
|
<%= prev_page_tag %>
|
|
<%= next_page_tag %>
|
|
</ul>
|
|
</nav>
|
|
<% end %>
|