1
0
Fork 0
mirror of https://github.com/mcasimir/kaminari-bootstrap.git synced 2022-11-09 13:46:52 -05:00
mcasimir--kaminari-bootstrap/app/views/kaminari/_first_page.html.erb

14 lines
448 B
Text
Raw Normal View History

2012-08-05 10:43:48 -04:00
<%# Link to the "First" page
- available local variables
url: url to the first page
current_page: a page object for the currently displayed page
total_pages: total number of pages
2012-08-05 10:43:48 -04:00
per_page: number of items to fetch per page
remote: data-remote
-%>
<% unless current_page.first? -%>
<li class="first">
2012-08-05 10:43:48 -04:00
<%= link_to raw(t 'views.pagination.first'), url, {:remote => remote} %>
</li>
<% end -%>