Using django 1.8, I\'m observing something strange. Here is my javascript:
function form_submit(){ var form = $(\'#form1_id\'); request = $.post($(this).attr
From here
This is a feature, not a bug. If you want a list of values for a key, use the following:
values = request.POST.getlist('key')
And this should help retrieving list items from request.POST in django/python