Login

Multiple models display form

Author:
lbolognini
Posted:
July 18, 2007
Language:
Python
Version:
.96
Score:
-2 (after 2 ratings)

You have an update form with many fields and want to populate it with data coming from multiple models.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
def change_house_let(request, object_id):
    if request.method == "POST":
        new_data = request.POST.copy()
        form = HouseLetForm(new_data)
        
        if form.is_valid():
            pass
        else:
            pass
    else:
        h = HouseLet.objects.get(pk=object_id)
        p = Property.objects.get(pk=object_id)
        a = Ad.objects.get(pk=object_id)
        
        d = {}
        
        d.update(vars(h))
        d.update(vars(p))
        d.update(vars(a))
        
        context = dict(form=HouseLetForm(initial=d))

    return render_to_response("house_let.html", context)

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

miracle2k (on July 18, 2007):

If you're models are related to each other via a Foreignkey, beware. They're (autoincremented) primary keys could in theory be out of sync. I had the same thing just happen to me.

You may want to consider doing something like this instead:

p = Property.objects.get(pk=object_id) h = HouseLet.objects.get(property=p.id)

Or differently, whatever your exact relationships are.

#

Please login first before commenting.