Skip to content

Instantly share code, notes, and snippets.

@Mohl
Mohl / multiform.py
Created June 21, 2016 13:47 — forked from jamesbrobb/multiform.py
django multiform mixin and view that allows the submission of a) All forms b) Grouped forms c) An individual form
class MultiFormMixin(ContextMixin):
form_classes = {}
prefixes = {}
success_urls = {}
grouped_forms = {}
initial = {}
prefix = None
success_url = None