]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/_paging_nav.html.erb
Remove border css class used by previous version of paginator
[rails.git] / app / views / browse / _paging_nav.html.erb
index f691d4504cba173c5a765e30be278a1cacf08477..1f4cbee85e8a8af148b08a720c272db7e34481c6 100644 (file)
@@ -1,15 +1,8 @@
-<div>
-<% current_page = pages.current_page %>
-
-<% if pages.page_count > 1 %>
-    <%= t'browse.paging_nav.showing_page' %>
-    <%= current_page.number %> (<%= current_page.first_item %><%
-    if (current_page.first_item < current_page.last_item) # if more than 1 trace on page
-      %>-<%= current_page.last_item %><%
-    end %>
-    <%= t'browse.paging_nav.of'%> <%= pages.item_count %>)
-
-&middot;
-<%= raw pagination_links_each(pages, {}) { |n| link_to_page(n, page_param) } %>
-<% end %>
+<div class="d-flex flex-wrap gap-2">
+  <h4 class="fs-5 mb-0"><%= heading %></h4>
+  <% if pages.page_count > 1 %>
+    <div class="ms-auto">
+      <%= raw pagination_links_bootstrap(pages, {}) { |n| url_for(page_param => n) } %>
+    </div>
+  <% end %>
 </div>
 </div>