Skip to main content

Django formsets made convenient for users and developers alike.

Reason this release was yanked:

Incomplete wheel package

Project description

django-convenient-formsets

Python unit tests End-to-end tests Linters BrowserStack Status

This Django app aims to make formsets convenient for users and developers alike. It extends Django's built-in formset classes and includes support for dynamically adding and removing of forms on the webpage.

Installation

  1. Install using pip:

    $ pip install django-convenient-formsets
    
  2. Add to INSTALLED_APPS:

    INSTALLED_APPS = [
        # ...
        'convenient_formsets'
    ]
    

Quick start

  1. Create a formset in your Python code:

    from django import forms
    from convenient_formsets import ConvenientBaseFormSet
    
    
    class EmailForm(forms.Form):
        email = forms.EmailField()
    
    EmailFormSet = forms.formset_factory(
        EmailForm,
        formset=ConvenientBaseFormset,
        can_delete=True,
        extra=1,
    )
    
    email_formset = EmailFormSet(prefix='email-formset')
    
  2. Render formset in your template and add JavaScript code for initialization:

    <!doctype html>
    <html>
    <head>
        <!-- Include the formset's media -->
        {{ email_formset.media }}
    
        <!-- Initialize a ConvenientFormset -->
        <script>
            window.addEventListener('load', function(event) {
                new ConvenientFormset({
                    'formsetPrefix': '{{ email_formset.prefix }}',
                    'formsContainerSelector': '#formset #forms-container',
                    'formSelector': '.form',
                    'emptyFormSelector': '#formset #empty-form .form',
                    'addFormButtonSelector': '#formset #add-form-button',
                    'deleteFormButtonSelector': '#delete-form-button',
                });
            });
        </script>
    </head>
    
    <body>
        <!-- Render formset using the following basic structure -->
        <div id="email-formset">
            <div id="email-forms-container">
                {% for email_form in email_formset.forms %}
                <div class="email-form">
                    {{ email_form.email }}
                    {% if email_formset.can_delete %}{{ email_form.DELETE }}{% endif %}
                    <input type="button" id="delete-form-button" value="Delete">
                </div>
                {% endfor %}
            </div>
            <div><input type="button" id="add-form-button" value="Add another"></div>
            <div id="empty-form" hidden>
                <div class="email-form">
                    {{ email_formset.empty_form.email }}
                    <input type="button" id="delete-form-button" value="Delete">
                </div>
            </div>
            {{ email_formset.management_form }}
        </div>
    </body>
    </html>
    

Usage

Backend

The Python classes ConvenientBaseFormSet and ConvenientBaseModelFormSet extend Django's built-in BaseFormSet and BaseModelFormset by:

  • Allowing you to override the delete_widget property, used for the DELETE field in formset forms. It defaults to the forms.HiddenInput in order to hide it from the user.
  • Including the JavaScript files required for dynamic formsets.

Frontend

See the example in the Quick start guide above on how to render the formset in your HTML template. Feel free to add some intermediate DOM elements if it suits your template better, as long as you stick to the basic structure shown above.

Creating an instance of the JavaScript constructor function ConvenientFormset allows a user to add and delete forms within the rendered formset. When a user makes changes, the management form is updated accordingly. The constructor function can be passed the following parameters:

Name Description Type Required
formsetPrefix The formset's prefix property String Yes
formsContainerSelector CSS selector for the DOM element that contains all the forms String Yes
formSelector CSS selector for each form within formsContainerSelector String Yes
emptyFormSelector CSS selector for the empty form String Yes
addFormButtonSelector CSS selector for the DOM element that may be clicked to add an empty form String Yes
deleteFormButtonSelector CSS selector for the DOM element within formSelector that may be clicked to delete a form String No
hideAddFormButtonOnMaxForms Whether or not to hide the add button when reaching the max. number of forms (default: true) Boolean No
How adding an empty form works

The CSS selector addFormButtonSelector determines the DOM element that may be clicked (i.e. button or anchor) by the user to add an empty form, denoted by emptyFormSelector. It is cloned and added to the DOM element with formsContainerSelector.

If the hideAddFormButtonOnMaxForms parameter is set to true and the maximum number of forms is reached, the DOM element with addFormButtonSelector is automatically hidden by applying the hidden HTML attribute until one of the visible forms is deleted again.

How form deletion works

The CSS selector deleteFormButtonSelector determines the DOM element within each form that may be clicked by the user to delete that form. If the parameter deleteFormButtonSelector has not been provided, support for form deletion is automatically disabled.

If a user clicks the DOM element with deleteFormButtonSelector, deletion is handled in either of the following ways:

  1. If a form includes a DELETE field, the field's value is updated and the form will be hidden by applying the hidden HTML attribute. The deletion will then be handled by the backend.
  2. If the form does not include a DELETE field, the form is removed from the DOM altogether and will not be submitted to the backend.
Troubleshooting

In case the initialization of ConvenientFormset fails, check the browser console for some helpful output.

License

The scripts and documentation in this project are released under the BSD-3-Clause License.

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-convenient-formsets-0.9.tar.gz (11.5 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django-convenient-formsets-0.9.tar.gz.

File metadata

  • Download URL: django-convenient-formsets-0.9.tar.gz
  • Upload date:
  • Size: 11.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for django-convenient-formsets-0.9.tar.gz
Algorithm Hash digest
SHA256 9148d7c4fe6c6bd1e82cc789805ae8bcde4632d658b06d9cc4408a3d603a351e
MD5 1bc3f766db20aa69b6d77f58fd7d45c9
BLAKE2b-256 57122764f84a5ab9589bbdb646db25def34db27bbbdad03e8fe0c97561cdb836

See more details on using hashes here.

File details

Details for the file django_convenient_formsets-0.9-py3-none-any.whl.

File metadata

  • Download URL: django_convenient_formsets-0.9-py3-none-any.whl
  • Upload date:
  • Size: 4.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for django_convenient_formsets-0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 2ee76e10aed199f6d52367568877c5a28faedc9e9de38127de59920a0f78f779
MD5 09a1ce220e93aec6dc7c47458f29a93b
BLAKE2b-256 735f2bd635d484e65fce40cf264b5f2727ed1630effbca1cddf2f8193b848288

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