]> git.openstreetmap.org Git - rails.git/commitdiff
Don't show older/newer buttons if all items fit on one page
authorAnton Khorev <tony29@yandex.ru>
Mon, 21 Oct 2024 11:51:35 +0000 (14:51 +0300)
committerAnton Khorev <tony29@yandex.ru>
Mon, 21 Oct 2024 11:51:35 +0000 (14:51 +0300)
app/views/shared/_pagination.html.erb

index f10d0a9dc36648527306da667cdb764494c71d37..547078c51158f5be69df8eaa3232f3b82c0e1b7e 100644 (file)
@@ -1,3 +1,5 @@
+<% if older_id || newer_id %>
+
 <% translation_scope ||= "shared.pagination.#{controller.controller_name}" %>
 <nav>
   <% link_class = "page-link icon-link text-center" %>
 <% translation_scope ||= "shared.pagination.#{controller.controller_name}" %>
 <nav>
   <% link_class = "page-link icon-link text-center" %>
@@ -31,3 +33,5 @@
     <% end -%>
   </ul>
 </nav>
     <% end -%>
   </ul>
 </nav>
+
+<% end %>