Metadata-Version: 1.1
Name: django-simple-pagination
Version: 1.1.4
Summary: A simple pagination app for Django.
Home-page: https://github.com/MicroPyramid/django-simple-pagination
Author: Chaitanya
Author-email: chaitanya@micropyramid.com
License: UNKNOWN
Description: Django-Simple-Pagination
        =========================
        
        Django-Simple-Pagination is a simple Django app to for digg-style pagination with little effort.
        
        **Documentation** is `avaliable online
        <http://django-simple-pagination.readthedocs.org/>`_, 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',
            ]
        2. In templates use ``{% paginate entities %}`` to get pagination objects.
        3. In templates use ``{% show_pageitems %}`` to get digg-style page links.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
