Skip to main content

An attempt to add pagination to Django Model Formsets.

Project description

Latest Version https://travis-ci.org/creafz/django-paginated-modelformset.svg?branch=master https://coveralls.io/repos/creafz/django-paginated-modelformset/badge.png?branch=master

An attempt to add pagination to Django Model Formsets.

Requirements

  • Python 2.6+ or Python 3

  • Django 1.6+

Installation

Install from PyPI

pip install django-paginated-modelformset

Usage

from django.forms.models import modelformset_factory
from paginated_modelformset import PaginatedModelFormSet
from myapp.models import MyModel

MyModelFormSet = modelformset_factory(MyModel, formset=PaginatedModelFormSet)

# In addition to standard arguments, provide a number of items per page and a page number.
formset = MyModelFormSet(per_page=25, page_num=1)

PaginatedModelFormSet uses the same Paginator class that is used for standard pagination. A Page object is accessible as a page attribute of the formset and you can use it in templates like this:

<div class="pagination">
    <span class="step-links">
        {% if formset.page.has_previous %}
            <a href="?page={{ formset.page.previous_page_number }}">previous</a>
        {% endif %}

        <span class="current">
            Page {{ formset.page.number }} of {{ formset.page.paginator.num_pages }}.
        </span>

        {% if formset.page.has_next %}
            <a href="?page={{ formset.page.next_page_number }}">next</a>
        {% endif %}
    </span>
</div>

Alternatives

See this StackOverflow question for an alternative solution.

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-modelformset-0.0.2.tar.gz (4.4 kB view details)

Uploaded Source

File details

Details for the file django-paginated-modelformset-0.0.2.tar.gz.

File metadata

File hashes

Hashes for django-paginated-modelformset-0.0.2.tar.gz
Algorithm Hash digest
SHA256 e76034b778f793a793ed81ed9b7ef104ce6cabd0139af18e5778f56f07a4f096
MD5 7bf279c1346822736d7161b2644a98a2
BLAKE2b-256 806f3711cf719a7594d9def244b522312e4ffe954de7b871ff335e216a51eccc

See more details on using hashes here.

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