{% macro paginationRender(settings) %}
{% import '@core/form.twig' as form %}
{% import '@core/helpers.twig' as hlp %}
{% if settings.info.first is defined and settings.info.prev is defined %}
{{ translate('First') }}{{ translate('Previous') }}
{% endif %}
{% for ind1, val1 in settings %}
{% if (ind1) != 'info' %}
{% if settings.info.currentPage == ind1 %}
{{ ind1 }}
{% else %}
{{ ind1 }}
{% endif %}
{% endif %}
{% endfor %}
{% if settings.info.next is defined and settings.info.last is defined %}
{{ translate('Next') }}{{ translate('Last') }}
{% endif %}