I have a field called 'approvedamount' in a django form that is being populated in the browser but is not coming through in the request.POST values.
If you do a view on the QueryDict of the request variables upon Post, it shows the value is there (5000) - as such:
QueryDict: QueryDict: {u'csrfmiddlewaretoken': [u'bec667f48284f2478fa91bd54c2ca706', u'bec667f48284f2478fa91bd54c2ca706'], u'approve': [u'approved', u'approved'], u'submit_approval_update_15884': [u'Update'], u'declinecode': [u'Please Select', u'Please Select'], u'approvedamount': [u'5000', u'']}
however if you do a request.POST['approvedamount'] or request.POST.get('approvedamount') the null string is returned
i've also verified in chrome debug tools that the value of the input box is set, it's just not coming through on the postback to Django for some reason.