X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0c79686f3cef86330d0ab6bbef2a9e2275ac93ac..30caa3c09ee2108fa5ed77883e4d658d4b58d9af:/app/views/user_blocks/_blocks.html.erb?ds=inline diff --git a/app/views/user_blocks/_blocks.html.erb b/app/views/user_blocks/_blocks.html.erb index 2f7f54a19..de6feafa1 100644 --- a/app/views/user_blocks/_blocks.html.erb +++ b/app/views/user_blocks/_blocks.html.erb @@ -1,35 +1,26 @@ -<table id="block_list" cellpadding="3"> - <tr> - <% if show_user_name %> - <th><%= t ".display_name" %></th> - <% end %> - <% if show_creator_name %> - <th><%= t ".creator_name" %></th> - <% end %> - <th><%= t ".reason" %></th> - <th><%= t ".status" %></th> - <th><%= t ".revoker_name" %></th> - <th></th> - <th></th> - <% if show_revoke_link %> - <th></th> - <% end %> - </tr> - <%= render :partial => "block", :locals => { :show_revoke_link => show_revoke_link, :show_user_name => show_user_name, :show_creator_name => show_creator_name }, :collection => @user_blocks %> -</table> +<turbo-frame id="pagination" target="_top" data-turbo="false"> + <table id="block_list" class="table table-borderless table-striped table-sm"> + <thead> + <tr> + <% if @show_user_name %> + <th><%= t ".display_name" %></th> + <% end %> + <% if @show_creator_name %> + <th><%= t ".creator_name" %></th> + <% end %> + <th><%= t ".reason" %></th> + <th><%= t ".status" %></th> + <th><%= t ".revoker_name" %></th> + <th></th> + <th></th> + </tr> + </thead> + <%= render :partial => "block", :collection => @user_blocks %> + </table> -<ul class='secondary-actions'> - <% if @user_blocks_pages.current_page.number > 1 -%> - <li><%= link_to t(".previous"), @params.merge(:page => @user_blocks_pages.current_page.number - 1) %></li> - <% else -%> - <li><%= t(".previous") %></li> - <% end -%> - - <li><%= t(".showing_page", :page => @user_blocks_pages.current_page.number) %></li> - - <% if @user_blocks_pages.current_page.number < @user_blocks_pages.page_count -%> - <li><%= link_to t(".next"), @params.merge(:page => @user_blocks_pages.current_page.number + 1) %></li> - <% else -%> - <li><%= t(".next") %></li> - <% end -%> -</ul> + <%= render "shared/pagination", + :newer_key => "user_blocks.blocks.newer", + :older_key => "user_blocks.blocks.older", + :newer_id => @newer_user_blocks_id, + :older_id => @older_user_blocks_id %> +</turbo-frame>