]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/user_blocks/_blocks.html.erb
Use leaflet css for print
[rails.git] / app / views / user_blocks / _blocks.html.erb
index 5338535522e45d5a1d548d9bf0a086ed826c706f..12f0c7ced4224ee4fee2f0b086045e4f14a011e5 100644 (file)
@@ -3,8 +3,8 @@
     <% if show_user_name %>
     <th><%= t'user_block.partial.display_name' %></th>
     <% end %>
-    <% if show_moderator_name %>
-    <th><%= t'user_block.partial.moderator_name' %></th>
+    <% if show_creator_name %>
+    <th><%= t'user_block.partial.creator_name' %></th>
     <% end %>
     <th><%= t'user_block.partial.reason' %></th>
     <th><%= t'user_block.partial.status' %></th>
     <th></th>
     <% end %>
   </tr>
-  <%= render :partial => 'block', :locals => {:show_revoke_link => show_revoke_link, :show_user_name => show_user_name, :show_moderator_name => show_moderator_name }, :collection => @user_blocks unless @user_blocks.nil? %>
+  <%= 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>
+
+<p>
+  <% if @user_blocks_pages.current_page.number > 1 -%>
+    <%= link_to t('user_block.partial.previous'), params.merge({ :page => @user_blocks_pages.current_page.number - 1 }) %>
+  <% else -%>
+    <%= t('user_block.partial.previous') %>
+  <% end -%>
+
+  | <%= t('user_block.partial.showing_page', :page => @user_blocks_pages.current_page.number) %> |
+
+  <% if @user_blocks_pages.current_page.number < @user_blocks_pages.page_count -%>
+    <%= link_to t('user_block.partial.next'), params.merge({ :page => @user_blocks_pages.current_page.number + 1 }) %>
+  <% else -%>
+    <%= t('user_block.partial.next') %>
+  <% end -%>
+</p>