All Projects → TimBest → django-multi-form-view

TimBest / django-multi-form-view

Licence: GPL-3.0 License
Django class based views for using more than one form in a single view

Programming Languages

python
139335 projects - #7 most used programming language
Gherkin
971 projects

Projects that are alternatives of or similar to django-multi-form-view

Try-Django-3.2
Learn the fundamentals behind one of the most popular web frameworks in the world by building a real project.
Stars: ✭ 181 (+151.39%)
Mutual labels:  django-forms
django-extra-field-validation
Extends the Django model with required, conditional, and optional field validation.
Stars: ✭ 18 (-75%)
Mutual labels:  django-forms
django-vanilla-extensions
The missing FormSets and ViewSets for django vanilla views.
Stars: ✭ 15 (-79.17%)
Mutual labels:  django-formsets
django-front-end-validators
Use model field validator functions for front end JS form validation
Stars: ✭ 15 (-79.17%)
Mutual labels:  django-forms
django api forms
Declarative Django request validation for RESTful APIs
Stars: ✭ 17 (-76.39%)
Mutual labels:  django-forms

Django Multi. Form View

CircleCI codecov PyPI

Django class based views for using more than one Form or ModelForm in a single view.

Install

$ pip install django-multi-form-view

Usage

MultiFormView (Example)

class multi_form_view.MultiFormView A single view that can display multiple Django forms. Handles displaying, redisplaying on error, and redirects on form success in.

Extends

  • django.views.generic import FormView

Attributes and Methods

  • form_classes A dictionary containing to forms for the view.
  • are_forms_valid() Check if all forms defined in form_classes are valid.
  • forms_valid() Redirects to get_success_url().
  • forms_invalid() Renders a response containing the form errors.
  • get() Render the forms.
  • get_context_data() Adds the results of get_forms() to the context dictionary with the key 'forms'.
  • get_forms(). Initializes the forms defined in form_classes with initial data from get_initial() and kwargs from get_form_kwargs().
  • get_form_kwargs(). Build the keyword arguments required to instantiate the form.
  • get_initial() Returns a copy of initial with empty initial data dictionaries for each form.
  • post() Uses are_forms_valid() to call either forms_valid() or forms_invalid().

MultiModelFormView (Example)

class multi_form_view.MultiModelFormView A single view that can display multiple Django ModelForms. Handles displaying, redisplaying on error, and redirects on form success in.

Extends

  • multi_form_view.MultiFormView

Attributes and Methods

  • forms_valid() Calls save() on each form.
  • get_forms(). Initializes the forms defined in form_classes with initial data from get_initial(), kwargs from get_form_kwargs() and form instance object from get_objects().
  • get_objects() Returns dictionary with the instance objects for each form. Keys should match the corresponding form.

Demo

$ cd demo
$ pip3 install -r requirements.txt
$ python3 manage.py migrate
$ python3 manage.py runserver

Testing

Install headless chrome

$ python3 demo/manage.py behave
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].