Sha256: 17aa5a526803f3ae81d92cd907bff51f1999acfc6ae2c93cf49a58e6f58d8c02

Contents?: true

Size: 646 Bytes

Versions: 1

Compression:

Stored size: 646 Bytes

Contents

<%if  start - per_page >= 0 || start + per_page <= size%>
<p class='pagination'>
  <% if start - per_page >= 0 %>
    <a href="<%= current_page %>?start=<%= start - per_page %>" class='less'>&laquo; Previous</a>
  <% end %>

  <% (0...(size / per_page.to_f).ceil).each do |page_num| %>
    <% if start == page_num * per_page %>
       <%= page_num + 1 %>
    <% else %>
      <a href="<%= current_page %>?start=<%= page_num * per_page %>"> <%= page_num + 1 %></a>
    <% end %>
  <% end %>

  <% if start + per_page <= size %>
    <a href="<%= current_page %>?start=<%= start + per_page %>" class='more'>Next &raquo;</a>
  <% end %>
</p>
<%end%>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
resque-1.24.0 lib/resque/server/views/next_more.erb