Skip to main content

Simple django digg-style pagination.

Project description

django-paginated
================

Installation
------------

```
pip install django-paginated
```

and add `paginated` to project's `INSTALLED_APPS`


Example
-------

To add pagination just change from:

```python
def events(request):
events = Event.objects.all()

context = {
'events': events,
}
return render_to_response(request, 'events.html', context)
```

to

```python
def events(request):
events, pagination = paginated(Event.objects.all(), request)

context = {
'events': events,
'pagination': pagination,
}
return render_to_response(request, 'events.html', context)
```


and in template add line:

```
{{ pagination|safe }}
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-paginated-0.1.3.tar.gz (3.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page