- 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
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
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.