Login

Instance partial update

Author:
dballanc
Posted:
September 9, 2007
Language:
Python
Version:
.96
Score:
7 (after 7 ratings)

If you're like me, you've got a models with a lot of fields/foreignkeys and often only want to edit a portion of the model in a form. Add this method to your custom form class and use it in place of the save() method.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
Add this method to a custom form to use as an alternative
to the save method.  When passed an object instance, the it
will set values on the model corresponding to matching
field names on the form.  

Example:

myobject = MyObject.objects.get(pk=1) 
form = MyForm(request.POST) 
    if form.is_valid(): 
        form.update_instance(myobject)
"""
def update_instance(self,instance,commit=True):
    for f in instance._meta.fields:
        if f.attname in self.fields:
            setattr(instance,f.attname,self.cleaned_data[f.attname])
    if commit:
        try: 
            instance.save()
        except: 
            return False
    return instance

More like this

  1. Add Toggle Switch Widget to Django Forms by OgliariNatan 2 weeks, 1 day ago
  2. get_object_or_none by azwdevops 4 months, 1 week ago
  3. Mask sensitive data from logger by agusmakmun 6 months ago
  4. Template tag - list punctuation for a list of items by shapiromatron 1 year, 8 months ago
  5. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 1 year, 8 months ago

Comments

Please login first before commenting.