All Projects → MicroPyramid → django-simple-pagination

MicroPyramid / django-simple-pagination

Licence: MIT License
django pagination as you want it to be

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to django-simple-pagination

InfiniteScroll
You can do a Endless scroll in ListView or RecyclerView with simple steps, with a listener for do request to your web service.
Stars: ✭ 28 (-31.71%)
Mutual labels:  pagination
ag-grid
The best JavaScript Data Table for building Enterprise Applications. Supports React / Angular / Vue / Plain JavaScript.
Stars: ✭ 8,743 (+21224.39%)
Mutual labels:  pagination
react-hot-pagination
A React component to render your pagination navigation
Stars: ✭ 28 (-31.71%)
Mutual labels:  pagination
reactionmenu
A library to create a discord paginator. Supports pagination with Discords Buttons feature and reactions.
Stars: ✭ 68 (+65.85%)
Mutual labels:  pagination
react-native-paginated-listview
A simple paginated react-native ListView with a few customization options
Stars: ✭ 14 (-65.85%)
Mutual labels:  pagination
rails cursor pagination
Add cursor pagination to your ActiveRecord backed application
Stars: ✭ 21 (-48.78%)
Mutual labels:  pagination
simple-datagridview-paging
A simple UserControl that shows the data-table and paging automatically with .Net Framework
Stars: ✭ 23 (-43.9%)
Mutual labels:  pagination
Pagination-Utils
A collection of methods to make message pagination with JDA easier.
Stars: ✭ 20 (-51.22%)
Mutual labels:  pagination
fast-relay-pagination
Improve relay pagination performance with find and limit
Stars: ✭ 18 (-56.1%)
Mutual labels:  pagination
dynamodb-paginator
Paginate DynamoDB results easily
Stars: ✭ 18 (-56.1%)
Mutual labels:  pagination
vue-tiny-pagination
A Vue component for create a tiny pagination with Flexbox
Stars: ✭ 20 (-51.22%)
Mutual labels:  pagination
hanami-pagination
No description or website provided.
Stars: ✭ 14 (-65.85%)
Mutual labels:  pagination
bs-table
BsTable is an AngularJS directive that adds tfoot tag with pagination and page size selection to your table and watches changes on your collection in ng-repeat attribute.
Stars: ✭ 42 (+2.44%)
Mutual labels:  pagination
django-cursor-pagination
Cursor-based pagination for Django
Stars: ✭ 126 (+207.32%)
Mutual labels:  pagination
v-page
A simple pagination bar, including length Menu, i18n support, based on Vue2.x
Stars: ✭ 85 (+107.32%)
Mutual labels:  pagination
express-mquery
Expose mongoose query API through HTTP request.
Stars: ✭ 37 (-9.76%)
Mutual labels:  pagination
laravel-auto
Laravel Auto - a helper package to make automated lists with filters, sorting and paging like no other
Stars: ✭ 41 (+0%)
Mutual labels:  pagination
spring-thymeleaf-pagination
Spring Boot application which demonstrates implementation of pagination in Java web application with Thymeleaf template engine
Stars: ✭ 73 (+78.05%)
Mutual labels:  pagination
Blazor.Pagination
A reusable pagination component for Blazor.
Stars: ✭ 27 (-34.15%)
Mutual labels:  pagination
cakephp-api-pagination
📑 CakePHP 4 plugin that injects pagination information into API responses.
Stars: ✭ 39 (-4.88%)
Mutual labels:  pagination
https://travis-ci.org/MicroPyramid/django-simple-pagination.svg?branch=master Latest Release https://coveralls.io/repos/github/MicroPyramid/django-simple-pagination/badge.svg?branch=master Code Health

Django Simple Pagination is a simple Django app to for digg-style pagination with little effort.

Documentation is avaliable online, or in the docs directory of the project.

Quick start

  1. Install 'Django-Simple-Pagination' using the following command:

    pip install django-simple-pagination
    
  2. Add simple_pagination to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'simple_pagination',
    ]
    
  3. In templates use {% load paginate %} to load all pagination template tags

  4. In templates use {% paginate no_of_records entities %} to get pagination objects.

    Here no_of_records means no of objects to display in a page and entities means the list of objects

  5. In templates use {% show_pageitems %} to get digg-style page links.

Questions, Comments, etc?

We welcome your feedback and support, raise github ticket if you want to report a bug. Need new features? Contact us here

Visit our Django web development page Here

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].