{#
This is a custom Pagination Renderer, This Pagination creates ajaxified pagination
THIS FUNCTION EXPECTS THAT THERE WILL BE A JAVASCRIPT FUNCTION Name __loadPage()
#}
Showing page {{current}}/{{pageCount}} of {{totalCount}} results
{% if pageCount > 1 %}
{% if first is defined and current != first %}
<<
{% endif %}
{% if previous is defined %}
<
{% endif %}
{% for page in pagesInRange %}
{% if page != current %}
{{ page }}
{% else %}
{{ page }}
{% endif %}
{% endfor %}
{% if next is defined %}
>
{% endif %}
{% if last is defined and current != last %}