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

14 lines
372 B
Text
Raw Normal View History

2024-05-04 23:09:20 +02:00
<%= if @page.total_entries > 0 do %>
2024-05-04 23:09:44 +02:00
Showing <%= pluralize("result", "results", @page.total_entries) %>
2024-05-04 23:09:20 +02:00
<strong>
2024-05-04 23:09:44 +02:00
<%= max((@page.page_number - 1) * @page.page_size, 0) + 1 %> - <%= min(@page.page_number * @page.page_size, @page.total_entries) %>
2024-05-04 23:09:20 +02:00
</strong>
of
<strong>
<%= @page.total_entries %>
</strong>
total
<% else %>
No results found
<% end %>