philomena/lib/philomena_web/templates/pagination/_pagination_info.html.heex

17 lines
382 B
Text
Raw Normal View History

2024-06-02 05:50:36 +02:00
<%= 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 %>