paginate_by = 10
{% block pagination %}
{% if is_paginated %}
<div class="pagination">
{% if page_obj.has_next %}
<a href="{{ request.path }}?page={{ page_obj.next_page_number }}">Load More</a>
{% endif %}
</div>
{% endif %}
{% endblock %}