Skip to content
This repository was archived by the owner on Jan 7, 2022. It is now read-only.

MicroPyramid/django-simple-pagination

Folders and files

NameName
Last commit message
Last commit date

Latest commit

dce9941 · Aug 18, 2020

History

81 Commits
Aug 18, 2020
Aug 18, 2020
Aug 18, 2020
Oct 13, 2015
Aug 18, 2020
Mar 20, 2020
Aug 21, 2015
Apr 9, 2018
Aug 18, 2020
May 25, 2016

Repository files navigation

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