1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Port pagination styling to BS3, fixes #1225

This commit is contained in:
Mike Perham 2013-10-03 20:13:33 -07:00
parent 875d9d7391
commit fc2191cd68

View file

@ -1,6 +1,5 @@
<% if @total_size > @count %>
<div class="pagination pagination-right">
<ul>
<ul class="pagination pull-right">
<li class="<%= 'disabled' if @current_page == 1 %>">
<a href="<%= url %>?page=1">«</a>
</li>
@ -21,5 +20,4 @@
<a href="<%= url %>?page=<%= (@total_size.to_f / @count).ceil %>">»</a>
</li>
</ul>
</div>
<% end %>