Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django Save Incomplete Progress on Form

I have a django webapp with multiple users logging in and fill in a form.

Some users may start filling in a form and lack some required data (e.g., a grant #) needed to validate the form (and before we can start working on it). I want them to be able to fill out the form and have an option to save the partial info (so another day they can log back in and complete it) or submit the full info undergoing validation.

Currently I'm using ModelForm for all the forms I use, and the Model has constraints to ensure valid data (e.g., the grant # has to be unique). However, I want them to be able to save this intermediary data without undergoing any validation.

The solution I've thought of seems rather inelegant and un-django-ey: create a "Save Partial Form" button that saves the POST dictionary converts it to a shelf file and create a "SavedPartialForm" model connecting the user to partial forms saved in the shelf. Does this seem sensible? Is there a better way to save the POST dict directly into the db? Or is an add-on module that does this partial-save of a form (which seems to be a fairly common activity with webforms)?

My biggest concern with my method is I want to eventually be able to do this form-autosave automatically (say every 10 minutes) in some ajax/jquery method without actually pressing a button and sending the POST request (e.g., so the user isn't redirected off the page when autosave is triggered). I'm not that familiar with jquery and am wondering if it would be possible to do this.

like image 427
dr jimbob Avatar asked Nov 12 '10 19:11

dr jimbob


3 Answers

Place the following into your form __init__

for field in form.fields:
    form.fields[field].required = False

For example:

class MySexyForm(Form):
    def __init__(self, *args, **kwargs):
        super(MySexyForm, self).__init__(*args, **kwargs)
        for field in self.fields:
            self.fields[field].required = False

Then call:

form = MySexyForm(...)
form.save()

However you'll need to make sure your clean() method can handle any missing attributes by conditionally checking if they exist in cleaned_data. For example, if another form field validation relies on customer_id but your partial form have not specified one, then customer_id would not be in cleaned_data.

If this is for a model form, you could check if the value was in cleaned_data, and fallback onto instance.field if it was missing, for example;

def clean(self):
    inst = self.instance
    customer_id_new = self.cleaned_data.get('customer_id', None)
    customer_id_old = getattr(self.instance, 'customer_id') if inst else None
    customer_id = customer_id_new if customer_id_new else customer_id_old

Remember that the value new value will almost certainly not be in the same format as the old value, for example customer_id could actually be a RelatedField on the model instance but an pk int on the form data. Again, you'll need to handle these type differences within your clean.

This is one area where Django Forms really are lacking sadly.

like image 119
sleepycal Avatar answered Nov 07 '22 17:11

sleepycal


before Saving:

for field in form.fields:
    form.fields[field].required = False

then:

form.save()
like image 29
Erik Avatar answered Nov 07 '22 19:11

Erik


The issue is that you have multiple Forms.

Partial. Incomplete. Complete. Ready for this. Ready for that.

Indeed, you have a Form-per-stage of a workflow.

Nothing wrong with this at all.

  1. Figure out where in the workflow you are.

  2. Populate and present the form for the next stage.

Forms can inherit from each other to save repeating validation methods.

like image 1
S.Lott Avatar answered Nov 07 '22 18:11

S.Lott