Add MultiFormView class based view, convert InteractiveUpload view to MultiForm view

This commit is contained in:
Roberto Rosario
2014-10-24 18:18:40 -04:00
parent 4acf88c9a6
commit c23205f464
8 changed files with 271 additions and 182 deletions

View File

@@ -23,6 +23,7 @@ class UploadBaseForm(forms.Form):
def __init__(self, *args, **kwargs):
show_expand = kwargs.pop('show_expand', False)
self.source = kwargs.pop('source')
super(UploadBaseForm, self).__init__(*args, **kwargs)
if show_expand: