refactor: Remove pagination
This commit is contained in:
		@@ -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>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user