{% comment %}Shared feed pagination. Expects: page, total_pages, total_count, per_page, current_type, has_prev, has_next. All buttons re-fetch the feed via HTMX.{% endcomment %} {% if total_pages > 1 %}
Page {{ page }} of {{ total_pages }} ({{ total_count }} entries)
{% if page > 2 %} {% if page > 3 %} ... {% endif %} {% endif %} {% if page > 1 %} {% endif %} {% if page < total_pages %} {% endif %} {% if page < total_pages|add:-1 %} {% if page < total_pages|add:-2 %} ... {% endif %} {% endif %}
{% endif %}