I have an error message on django 1.4:
dictionary update sequence element #0 has length 1; 2 is required
[EDIT]
It happe
I got the same issue and found that it was due to wrong parameters. In views.py, I used:
views.py
return render(request, 'demo.html',{'items', items})
But I found the issue: {'items', items}. Changing to {'items': items} resolved the issue.
{'items', items}
{'items': items}