2011-02-11 02:53:41 -05:00
|
|
|
<%# The container tag
|
|
|
|
- available local variables
|
2011-02-27 10:17:09 -05:00
|
|
|
current_page: a page object for the currently displayed page
|
2011-02-11 02:53:41 -05:00
|
|
|
num_pages: total number of pages
|
|
|
|
per_page: number of items to fetch per page
|
|
|
|
remote: data-remote
|
2011-02-16 09:24:31 -05:00
|
|
|
paginator: the paginator that renders the pagination tags inside
|
2011-02-08 16:59:27 -05:00
|
|
|
-%>
|
2011-02-16 10:46:34 -05:00
|
|
|
<%= paginator.render do -%>
|
2011-02-23 07:44:12 -05:00
|
|
|
<nav class="pagination">
|
2011-04-13 19:14:17 -04:00
|
|
|
<%= first_page_tag unless current_page.first? %>
|
|
|
|
<%= prev_page_tag unless current_page.first? %>
|
2011-02-15 16:48:35 -05:00
|
|
|
<% each_page do |page| -%>
|
2011-02-24 20:35:21 -05:00
|
|
|
<% if page.left_outer? || page.right_outer? || page.inside_window? -%>
|
|
|
|
<%= page_tag page %>
|
2011-02-15 16:48:35 -05:00
|
|
|
<% elsif !page.was_truncated? -%>
|
2011-02-24 22:04:59 -05:00
|
|
|
<%= gap_tag %>
|
2011-02-15 16:48:35 -05:00
|
|
|
<% end -%>
|
|
|
|
<% end -%>
|
2011-04-13 19:14:17 -04:00
|
|
|
<%= next_page_tag unless current_page.last? %>
|
|
|
|
<%= last_page_tag unless current_page.last? %>
|
2011-02-15 16:48:35 -05:00
|
|
|
</nav>
|
|
|
|
<% end -%>
|