X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7b384f03ab1d34fd3ebcc5ae3add25b3b5591e2e..e5c52108967d143c8d8f100260a88f69c907c869:/app/views/user_blocks/_blocks.html.erb diff --git a/app/views/user_blocks/_blocks.html.erb b/app/views/user_blocks/_blocks.html.erb index 7127cc283..01e54de21 100644 --- a/app/views/user_blocks/_blocks.html.erb +++ b/app/views/user_blocks/_blocks.html.erb @@ -1,14 +1,14 @@ <table id="block_list" cellpadding="3"> <tr> <% if show_user_name %> - <th><%= t'user_block.partial.display_name' %></th> + <th><%= t '.display_name' %></th> <% end %> <% if show_creator_name %> - <th><%= t'user_block.partial.creator_name' %></th> + <th><%= t '.creator_name' %></th> <% end %> - <th><%= t'user_block.partial.reason' %></th> - <th><%= t'user_block.partial.status' %></th> - <th><%= t'user_block.partial.revoker_name' %></th> + <th><%= t '.reason' %></th> + <th><%= t '.status' %></th> + <th><%= t '.revoker_name' %></th> <th></th> <th></th> <% if show_revoke_link %> @@ -17,3 +17,19 @@ </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> + +<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>