I can't seem to figure out a good way to do this,
I have a bunch of form input fields and rather than having to do like below where I have to type out each fieldname = "" and such, is there a way to code this so it would automatically save each field from within the form?
b = Modelname(fieldname=request.POST['fieldname'])
b.save()
I realize security issues of this but could be negated by running it through a list that checks for a valid form value.