hi,
un rails i can simply insert the params into the database with one command, when all form-field names are the same like the model-field names. is this possible in django as well, or do i have to set each param individually. i have like 20 fields, so it's a bit of a mess.. :)
something like:
blah = Contact()
blah.content = params[]
blah.save()
thanks!