philomena/lib/philomena_web/templates/pagination/_pagination_info.html.heex
2024-05-04 17:09:44 -04:00

13 lines
372 B
Text

<%= if @page.total_entries > 0 do %>
Showing <%= pluralize("result", "results", @page.total_entries) %>
<strong>
<%= max((@page.page_number - 1) * @page.page_size, 0) + 1 %> - <%= min(@page.page_number * @page.page_size, @page.total_entries) %>
</strong>
of
<strong>
<%= @page.total_entries %>
</strong>
total
<% else %>
No results found
<% end %>