New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

django-paginated-modelformset

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-paginated-modelformset

An attempt to add pagination to Django Model Formsets.

  • 0.0.2
  • PyPI
  • Socket score

Maintainers
1

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

.. image:: https://pypip.in/version/django-paginated-modelformset/badge.svg :target: https://pypi.python.org/pypi/django-paginated-modelformset/ :alt: Latest Version

.. image:: https://travis-ci.org/creafz/django-paginated-modelformset.svg?branch=master :target: https://travis-ci.org/creafz/django-paginated-modelformset

.. image:: https://coveralls.io/repos/creafz/django-paginated-modelformset/badge.png?branch=master :target: https://coveralls.io/r/creafz/django-paginated-modelformset?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 <https://docs.djangoproject.com/en/dev/topics/pagination/>_ class that is used for standard pagination. A Page <https://docs.djangoproject.com/en/dev/topics/pagination/#page-objects>_ 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 <http://stackoverflow.com/questions/14041381/paginate-django-formset>_ for an alternative solution.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc