{% if pagination_required %}
{% for i in page_range %}
{% if i == action_list.paginator.ELLIPSIS %}
{{ action_list.paginator.ELLIPSIS }}
{% elif i == action_list.number %}
{{ i }}
{% else %}
{{ i }}
{% endif %}
{% endfor %}
{% endif %}
{{ action_list.paginator.count }} {% blocktranslate count counter=action_list.paginator.count %}entry{% plural %}entries{% endblocktranslate %}
{% else %}
{% trans 'This object doesn’t have a change history. It probably wasn’t added via this admin site.' as message %}
{% include "unfold/helpers/messages/info.html" with message=message %}
{% endif %}
{% endblock %}