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 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