Improve handling of the case where there is only one page of changesets.

This commit is contained in:
Tom Hughes 2009-09-14 23:04:06 +00:00
parent 466f640138
commit 253e8a272d

View file

@ -7,8 +7,7 @@ if (current_page.first_item < current_page.last_item) # if more than 1 changeset
%>-<%= current_page.last_item %><%
end %>
<%= t'changeset.changeset_paging_nav.of'%> <%= @edit_pages.item_count %>)
<% pagination_links = pagination_links_each(@edit_pages, {}) { |n| link_to(n, params.merge({ :page => n })) } %>
<% if pagination_links %>
| <%= pagination_links %>
<% if @edit_pages.item_count > 1 %>
| <%= pagination_links_each(@edit_pages, {}) { |n| link_to(n, params.merge({ :page => n })) } %>
<% end %>
</p>