Add a paging control to the user blocks list
This commit is contained in:
parent
d97d3f76a6
commit
78ff250c1d
2 changed files with 19 additions and 0 deletions
|
@ -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>
|
||||
|
||||
<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>
|
||||
|
|
|
@ -1961,6 +1961,9 @@ en:
|
|||
status: "Status"
|
||||
revoker_name: "Revoked by"
|
||||
not_revoked: "(not revoked)"
|
||||
showing_page: "Showing page %{page}"
|
||||
next: "Next »"
|
||||
previous: "« Previous"
|
||||
helper:
|
||||
time_future: "Ends in %{time}."
|
||||
until_login: "Active until the user logs in."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue