refactor: Remove pagination

This commit is contained in:
moanos [he/him] 2024-03-20 12:06:49 +01:00
parent ef929b9498
commit dab29991c6

View File

@ -14,25 +14,9 @@
{% endblock %}
<div class="container-fluid">
<div class="row">
<div class="col-sm-10 content-box">{% block content %}{% endblock %}{% block pagination %}
{% if is_paginated %}
<div class="pagination">
<span class="page-links">
{% if page_obj.has_previous %}
<a href="{{ request.path }}?page={{ page_obj.previous_page_number }}">previous</a>
{% endif %}
<span class="page-current">
Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}.
</span>
{% if page_obj.has_next %}
<a href="{{ request.path }}?page={{ page_obj.next_page_number }}">next</a>
{% endif %}
</span>
</div>
{% endif %}
{% endblock %}</div>
<div class="col-sm-10 content-box">
{% block content %}{% endblock %}
</div>
</div>
</div>
</body>
</html>