Metadata-Version: 2.4
Name: django-crispy-formset-modal
Version: 0.15
Summary: Django app that provides an easy way to manage and manipulate formsets using modals with Django Crispy Forms.
Author-email: Blas Isaias Fernández Cáceres <blasferna@gmail.com>
Project-URL: homepage, https://blasferna.github.io/django-crispy-formset-modal
Project-URL: bugs, https://github.com/blasferna/django-crispy-formset-modal/issues
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Framework :: Django :: 4.1
Classifier: Framework :: Django :: 4.2
Classifier: Framework :: Django :: 5.1
Classifier: Framework :: Django :: 5.2
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django>=3.2
Requires-Dist: django-crispy-forms>=1.13.0
Requires-Dist: django-extra-views>=0.14.0
Dynamic: license-file

# django-crispy-formset-modal

Reusable Django app that provides an easy way to manage and manipulate formsets using modals with Django Crispy Forms. It enables you to dynamically add, edit, and delete formsets on the frontend.

![demo-view](https://github.com/blasferna/django-crispy-formset-modal/assets/8385910/8ee06376-e166-446c-9743-3bdbcaadf0d8)


## Features

* Dynamic formset operations: Add, edit, and delete formsets dynamically in a modal on the frontend.
* Generates an HTML table according to the layout definition, allowing you to determine which fields to display as columns.
* Provides the option to define which numeric fields will be used for a totalizer at the footer of the corresponding field's column.
* Enables mass deletion of records from the HTML table, thanks to the generation of a selection column with checkboxes that can be selected individually or collectively to delete multiple records at once.
* Offers support for various templates packs, including [Bootstrap 4](https://github.com/django-crispy-forms/crispy-bootstrap4), [Bootstrap 5](https://github.com/django-crispy-forms/crispy-bootstrap5), [Tailwind](https://github.com/django-crispy-forms/crispy-tailwind), and [Bulma](https://github.com/ckrybus/crispy-bulma).

## Dependencies

* [Django Crispy Forms](https://github.com/django-crispy-forms/django-crispy-forms): Django Crispy Formset Modal relies on Django Crispy Forms for form rendering
* [Django Extra Views](https://github.com/AndrewIngram/django-extra-views): For handling views with formsets.
* jQuery: Used to enable dynamic functionality.
## Installation

1. Install the package using pip:

```
pip install django-crispy-formset-modal
```

2. Add `crispy_formset_modal` to your `INSTALLED_APPS` in `settings.py`:

```python
INSTALLED_APPS = [
    ...
    'crispy_formset_modal',
    ...
]
```

## Usage

For detailed instructions on how to use Django Crispy Formset Modal, please refer to the [documentation](https://blasferna.github.io/django-crispy-formset-modal/) and check out the [demo](https://django-crispy-formset-modal.fly.dev/) for practical examples.

## Examples

The [demo](https://django-crispy-formset-modal.fly.dev/) provides various examples of how to use Django Crispy Formset Modal in different scenarios.

### Running the Demo App Locally

If you'd like to run the demo application on your local machine. Please follow the steps below:

#### Instructions

First, you need to have `uv` installed. If you don't have it, you can install it following the [official instructions](https://docs.astral.sh/uv/getting-started/installation/).

1. Clone this repository:

    ```
    git clone https://github.com/blasferna/django-crispy-formset-modal.git
    cd django-crispy-formset-modal
    ```

2. Set up the project environment:

    ```
    uv sync --dev
    ```
    This single command will:
    - Create a virtual environment in `.venv` if one doesn't exist.
    - Install all project and development dependencies specified in `pyproject.toml` into the environment.


3. Run development tasks with `uv run`:

    The `uv run` command executes scripts within the project's virtual environment, so you don't need to activate it manually.

    Apply database migrations:
    ```shell
    uv run python manage.py migrate
    ```

    Start the local development server:
    ```shell
    uv run python manage.py runserver
    ```

4.  **Explore the demo:**

    Visit `http://localhost:8000` in your browser to see the application.


## License

Django Crispy Formset Modal is released under the [MIT License](https://github.com/blasferna/django-crispy-formset-modal/blob/main/LICENSE).


